@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #2c5aa0;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: rgb(33, 67.5, 120);
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: #212529;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

h5, h6 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.text-primary {
  color: #2c5aa0 !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-white {
  color: #ffffff !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-size-sm {
  font-size: 0.875rem !important;
}

.font-size-lg {
  font-size: 1.25rem !important;
}

header {
  background-color: #00271C;
  border-bottom: 1px solid rgb(215.8369098712, 218.6566523605, 221.1630901288);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  header .header-container {
    padding: 0.25rem 0.5rem;
  }
}
header .logo-section {
  display: flex;
  align-items: center;
}
header .logo-section img {
  height: 70px;
  margin-right: 1rem;
}
@media (max-width: 575px) {
  header .logo-section img {
    height: 32px;
    margin-right: 0.5rem;
  }
}
header .logo-section .logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c5aa0;
}
@media (max-width: 575px) {
  header .logo-section .logo-text {
    font-size: 1rem;
  }
}
header .header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-btn {
  background-color: white;
  border: none;
  color: #00271C;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}
.header-btn:hover {
  background-color: rgb(205.5, 255, 205.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.5);
}
.header-btn:active {
  transform: translateY(-1px);
}
.header-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.3);
}

main {
  min-height: calc(100vh - 140px);
  padding: 1.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  main {
    padding: 1rem 0.5rem;
  }
}
main .container {
  width: 100%;
  max-width: 100%;
}
main .section {
  margin-bottom: 3rem;
}
main .section:last-child {
  margin-bottom: 0;
}
main .content-wrapper {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 575px) {
  main .content-wrapper {
    padding: 1rem;
    border-radius: 0.375rem;
  }
}

.footer {
  background: #002b24;
  color: white;
  padding: 40px 0;
  font-size: 14px;
  line-height: 1.6;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 991px) {
  .footer {
    padding: 30px 0;
  }
}
@media (max-width: 575px) {
  .footer {
    padding: 20px 0;
    font-size: 13px;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 30px;
}
@media (min-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer-content {
    padding: 0 15px;
    gap: 15px;
  }
}

.footer-section {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .footer-section {
    margin-bottom: 15px;
  }
}
.footer-section strong {
  color: white;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}
.footer-section a {
  color: #a8f0ce;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #d4ffea;
  text-decoration: underline;
}
.footer-section a:focus {
  outline: 2px solid #a8f0ce;
  outline-offset: 2px;
}

.social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .social-section {
    align-items: center;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .social-icons {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .social-icons {
    gap: 10px;
    margin-top: 10px;
  }
}
.social-icons a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8f0ce;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  background: rgba(168, 240, 206, 0.1);
}
.social-icons a:hover {
  background: rgba(168, 240, 206, 0.2);
  transform: translateY(-2px);
  color: #d4ffea;
}
.social-icons a:focus {
  outline: 2px solid #a8f0ce;
  outline-offset: 2px;
}
.social-icons a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.social-icons a span {
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .social-icons a span {
    display: none;
  }
}

.footer-links {
  grid-column: 1/-1;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 240, 206, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 1200px) {
  .footer-links {
    grid-column: 1/-1;
  }
}
@media (max-width: 991px) {
  .footer-links {
    justify-content: center;
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
  }
}
@media (max-width: 575px) {
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
.footer-links a {
  color: #a8f0ce;
  text-decoration: none;
  font-size: 13px;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #d4ffea;
  text-decoration: underline;
}
.footer-links a:focus {
  outline: 2px solid #a8f0ce;
  outline-offset: 2px;
}
.footer-links a:not(:last-child)::after {
  content: " | ";
  margin-left: 10px;
  color: rgba(168, 240, 206, 0.6);
}
@media (max-width: 575px) {
  .footer-links a:not(:last-child)::after {
    display: none;
  }
}

.footer-bottom {
  background: #3375e0;
  padding: 15px 0;
  color: white;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding-left: 20px;
}
@media (max-width: 575px) {
  .footer-bottom {
    padding: 12px 0;
    gap: 10px;
    padding-left: 15px;
  }
}
.footer-bottom strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (max-width: 575px) {
  .footer-bottom strong {
    font-size: 14px;
  }
}
.footer-bottom img {
  height: 30px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 575px) {
  .footer-bottom img {
    height: 25px;
  }
}

@media (max-width: 575px) {
  .footer-section br {
    display: block;
    margin-bottom: 5px;
  }
}
.btn, .btn-form {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  line-height: 1.5;
}
.btn:disabled, .btn-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.btn-sm, .btn-sm.btn-form {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.btn.btn-lg, .btn-lg.btn-form {
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
}
.btn.btn-primary, .btn-form {
  background-color: #2c5aa0;
  border-color: #2c5aa0;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(44, 90, 160, 0.2);
}
.btn.btn-primary:hover:not(:disabled), .btn-form:hover:not(:disabled) {
  background-color: rgb(33, 67.5, 120);
  border-color: rgb(33, 67.5, 120);
}
.btn.btn-primary:hover, .btn-form:hover {
  box-shadow: 0 4px 8px rgba(44, 90, 160, 0.3);
}
.btn.btn-secondary, .btn-secondary.btn-form {
  background-color: #28a745;
  border-color: #28a745;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}
.btn.btn-secondary:hover:not(:disabled), .btn-secondary.btn-form:hover:not(:disabled) {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn.btn-secondary:hover, .btn-secondary.btn-form:hover {
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}
.btn.btn-danger, .btn-danger.btn-form {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}
.btn.btn-danger:hover:not(:disabled), .btn-danger.btn-form:hover:not(:disabled) {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn.btn-danger:hover, .btn-danger.btn-form:hover {
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}
.btn.btn-outline, .btn-outline.btn-form {
  background-color: transparent;
  border-color: #2c5aa0;
  color: #2c5aa0;
}
.btn.btn-outline:hover:not(:disabled), .btn-outline.btn-form:hover:not(:disabled) {
  background-color: #2c5aa0;
  color: #ffffff;
}
.btn.btn-link, .btn-link.btn-form {
  background-color: transparent;
  border-color: transparent;
  color: #2c5aa0;
  text-decoration: underline;
}
.btn.btn-link:hover:not(:disabled), .btn-link.btn-form:hover:not(:disabled) {
  color: rgb(33, 67.5, 120);
}
.btn.btn-block, .btn-form {
  display: block;
  width: 100%;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #212529;
  font-size: 0.875rem;
  color: green;
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(128, 128, 128, 0.1);
  border: 0px;
  border-bottom: 1px solid rgb(114, 114, 114);
  border-radius: 0px;
  transition: all 0.2s ease-in-out;
}
.form-control:focus, .form-select:focus {
  outline: none;
  border-color: #2c5aa0;
  box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.25);
}
.form-control:disabled, .form-select:disabled {
  background-color: #f8f9fa;
  opacity: 0.6;
  cursor: not-allowed;
}
.form-control.is-invalid, .is-invalid.form-select {
  border-color: #dc3545;
}
.form-control.is-invalid:focus, .is-invalid.form-select:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.form-control.is-valid, .is-valid.form-select {
  border-color: #28a745;
}
.form-control.is-valid:focus, .is-valid.form-select:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

.form-select:not([multiple]):not([size]) {
  height: calc(2.25rem + 2px);
}

.form-check {
  display: block;
  margin-bottom: 0.25rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
  margin-top: 0.25em;
}
.form-check .form-check-label {
  padding-left: 1.5em;
  margin-bottom: 0;
  cursor: pointer;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}

.valid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #28a745;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.form-row .form-group {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.form-row .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.form-row .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (max-width: 575px) {
  .form-row .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.btn-form {
  width: 20%;
  background-color: green;
  border: 0px;
  display: block;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid rgb(215.8369098712, 218.6566523605, 221.1630901288);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card .card-header {
  padding: 1rem;
  margin-bottom: 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid rgb(215.8369098712, 218.6566523605, 221.1630901288);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.card .card-header h1, .card .card-header h2, .card .card-header h3, .card .card-header h4, .card .card-header h5, .card .card-header h6 {
  margin-bottom: 0;
}
.card .card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}
.card .card-body .card-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.card .card-body .card-subtitle {
  margin-bottom: 1rem;
  color: #6c757d;
  font-size: 0.875rem;
}
.card .card-body .card-text {
  margin-bottom: 1rem;
}
.card .card-body .card-text:last-child {
  margin-bottom: 0;
}
.card .card-footer {
  padding: 1rem;
  background-color: #f8f9fa;
  border-top: 1px solid rgb(215.8369098712, 218.6566523605, 221.1630901288);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.card .card-img-top {
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.card .card-img-bottom {
  width: 100%;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.card.card-primary {
  border-color: #2c5aa0;
}
.card.card-primary .card-header {
  background-color: #2c5aa0;
  color: #ffffff;
}
.card.card-secondary {
  border-color: #28a745;
}
.card.card-secondary .card-header {
  background-color: #28a745;
  color: #ffffff;
}
.card.card-info {
  border-color: #17a2b8;
}
.card.card-info .card-header {
  background-color: #17a2b8;
  color: #ffffff;
}
.card.card-warning {
  border-color: #fd7e14;
}
.card.card-warning .card-header {
  background-color: #fd7e14;
  color: #ffffff;
}
.card.card-danger {
  border-color: #dc3545;
}
.card.card-danger .card-header {
  background-color: #dc3545;
  color: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 575px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 575px) {
  .whatsapp-container {
    bottom: 15px;
    right: 15px;
    gap: 0.5rem;
  }
}

.whatsapp-tooltip {
  background-color: white;
  border: 1px solid #25d366;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.whatsapp-tooltip.hidden {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #25d366;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.whatsapp-tooltip p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #075e54;
}
.whatsapp-tooltip p:first-child {
  font-weight: 600;
  margin-bottom: 2px;
}
.whatsapp-tooltip p:last-child {
  color: #128c7e;
}
@media (max-width: 575px) {
  .whatsapp-tooltip {
    padding: 0.25rem 0.5rem;
  }
  .whatsapp-tooltip p {
    font-size: 0.75rem;
  }
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn:active {
  transform: scale(0.95);
}
.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 575px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

.whatsapp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s linear;
}
.whatsapp-modal.active {
  opacity: 1;
  visibility: visible;
}
.whatsapp-modal.active .modal-content {
  transform: translateY(0);
}
.whatsapp-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.whatsapp-modal .modal-content {
  transition: 100ms;
  position: absolute;
  bottom: 10%;
  right: 10%;
  background-color: white;
  border-radius: 12px;
  padding: 3rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
@media (max-width: 575px) {
  .whatsapp-modal .modal-content {
    padding: 1.5rem;
    max-width: 320px;
  }
}
.whatsapp-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-modal .modal-close:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-radius: 50%;
}
.whatsapp-modal .modal-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #075e54;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.whatsapp-modal .advisor-card {
  background: linear-gradient(135deg, #dcf8c6, #ece5dd);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border-left: 4px solid #25d366;
  position: relative;
}
.whatsapp-modal .advisor-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #25d366, #128c7e);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.1;
}
.whatsapp-modal .advisor-card .advisor-name {
  color: #075e54;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.whatsapp-modal .advisor-card .advisor-description {
  color: #128c7e;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}
.whatsapp-modal .advisor-card-large {
  padding: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-modal .advisor-card-large:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}
.whatsapp-modal .advisor-card-large .advisor-name {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.whatsapp-modal .advisor-card-large .advisor-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.whatsapp-modal .advisor-card-large .advisor-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.whatsapp-modal .advisor-card-large .advisor-action .whatsapp-icon {
  font-size: 1.5rem;
}
.whatsapp-modal .advisor-card-large .advisor-action .action-text {
  font-size: 1rem;
  font-weight: 600;
  color: #2c5aa0;
}

/*@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}*/
.whatsapp-modal.active .modal-content {
  animation: modalFadeIn 0.3s ease;
}

.alert {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}
.alert.alert-info {
  background-color: white;
  border-color: #25d366;
  color: #075e54;
}

.resultado-principal {
  text-align: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.resultado-principal .tarifa-final {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .resultado-principal .tarifa-final {
    font-size: 1.5rem;
  }
}

.desglose-calculo {
  background-color: #ece5dd;
  border-radius: 0.375rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.desglose-calculo h4 {
  color: #075e54;
  margin-bottom: 1rem;
  font-weight: 600;
}
.desglose-calculo .detalles-lista {
  margin-bottom: 1.5rem;
}
.desglose-calculo .detalles-lista .detalle-item {
  padding: 0.25rem 0;
  color: #128c7e;
  font-weight: 500;
  border-bottom: 1px solid rgb(205.6532258065, 246.3467741935, 220.8548387097);
}
.desglose-calculo .detalles-lista .detalle-item:last-child {
  border-bottom: none;
}
.desglose-calculo .calculo-final {
  background-color: white;
  border: 2px solid #25d366;
  border-radius: 0.375rem;
  padding: 1rem;
}
.desglose-calculo .calculo-final > div {
  padding: 0.25rem 0;
}
.desglose-calculo .calculo-final > div.subtotal-linea {
  color: #128c7e;
  border-bottom: 1px solid rgb(162.2620967742, 238.7379032258, 190.8306451613);
}
.desglose-calculo .calculo-final > div.multiplicador-linea {
  color: #34b7f1;
  border-bottom: 1px solid rgb(162.2620967742, 238.7379032258, 190.8306451613);
}
.desglose-calculo .calculo-final > div.total-linea {
  color: #075e54;
  font-size: 1.1rem;
  border-top: 2px solid #25d366;
  margin-top: 0.25rem;
  padding-top: 0.5rem;
}

.datos-ingresados {
  background-color: white;
  border: 1px solid rgb(162.2620967742, 238.7379032258, 190.8306451613);
  border-radius: 0.375rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.datos-ingresados h4 {
  color: #075e54;
  margin-bottom: 1rem;
  font-weight: 600;
}
.datos-ingresados .datos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
}
@media (max-width: 575px) {
  .datos-ingresados .datos-grid {
    grid-template-columns: 1fr;
  }
}
.datos-ingresados .datos-grid .dato-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: #dcf8c6;
  border-radius: 0.25rem;
  border-left: 3px solid #25d366;
}
.datos-ingresados .datos-grid .dato-item .dato-label {
  font-weight: 600;
  color: #075e54;
}
.datos-ingresados .datos-grid .dato-item .dato-valor {
  font-weight: 500;
  color: #128c7e;
}

#resultado {
  animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-control::placeholder, .form-select::placeholder {
  color: rgb(133.7553648069, 142.4849785408, 150.2446351931);
  opacity: 0.7;
}

.btn-block, .btn-form {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.btn-block:hover, .btn-form:hover {
  background: linear-gradient(135deg, #128c7e, rgb(12.1898734177, 94.8101265823, 85.3291139241));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.btn-block:active, .btn-form:active {
  transform: translateY(0);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, rgb(33.1955645161, 189.3044354839, 91.5120967742), rgb(15.0949367089, 117.4050632911, 105.664556962));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: white;
  text-decoration: none;
}
.btn-whatsapp:active {
  transform: translateY(-1px);
}
.btn-whatsapp:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
  color: white;
}
.btn-whatsapp svg {
  fill: currentColor;
}

.pago-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #dcf8c6;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

@media (max-width: 575px) {
  .resultado-principal {
    padding: 1rem;
  }
  .desglose-calculo,
  .datos-ingresados {
    padding: 1rem;
  }
  .datos-grid .dato-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
.que-es-section {
  padding: 3rem 1rem;
  background-color: white;
}
.que-es-section .container {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .que-es-section .container {
    padding: 0 0.5rem;
  }
}

.que-es-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.5rem;
  color: #212529;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 575px) {
  .que-es-title {
    font-size: 1.5rem;
  }
}

.linea-decorativa {
  width: 70px;
  height: 4px;
  background-color: #f5c400;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.que-es-descripcion {
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 3rem;
  color: #212529;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 575px) {
  .que-es-descripcion {
    font-size: 0.9rem;
    text-align: left;
  }
}

.boton-wrapper {
  text-align: right;
  position: relative;
  display: inline-block;
}
@media (max-width: 575px) {
  .boton-wrapper {
    text-align: center;
    width: 100%;
  }
}
.boton-wrapper::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  background-color: #ffde00;
  z-index: 1;
  border-radius: 2px;
}

.boton-conocer {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #f85900;
  border: 2px solid #00008b;
  padding: 0.5rem 1.5rem;
  position: relative;
  background-color: white;
  z-index: 2;
  transition: all 0.3s ease;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.boton-conocer:hover {
  background-color: #f85900;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}
.boton-conocer:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 89, 0, 0.3);
}
@media (max-width: 575px) {
  .boton-conocer {
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
  }
}

.pasos-section {
  width: 100%;
  min-height: 100vh;
}

.pasos-content {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (max-width: 991px) {
  .pasos-content {
    flex-direction: column;
  }
}

/* Left Panel - Background + Steps */
.left-panel {
  flex: 2;
  background: url("https://2182029.fs1.hubspotusercontent-na1.net/hubfs/2182029/Centro%20de%20la%20ciudad%20-%20El%20centro%20de%20Bogot%C3%A1-Bogot%C3%A1%20de%20noche.jpg") no-repeat center center;
  color: white;
  padding: 60px 40px;
  position: relative;
}
@media (max-width: 991px) {
  .left-panel {
    padding: 40px 30px;
    min-height: 60vh;
  }
}
@media (max-width: 575px) {
  .left-panel {
    padding: 30px 20px;
    min-height: 50vh;
  }
}
.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.left-panel > * {
  position: relative;
  z-index: 2;
}

.titulo {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-transform: lowercase;
}
@media (max-width: 991px) {
  .titulo {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .titulo {
    font-size: 1.5rem;
  }
}

.linea {
  width: 60px;
  height: 5px;
  background-color: #f5c400;
  margin-bottom: 30px;
  border-radius: 2px;
}
@media (max-width: 575px) {
  .linea {
    width: 50px;
    height: 4px;
    margin-bottom: 20px;
  }
}

.lista-pasos p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 575px) {
  .lista-pasos p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}
.lista-pasos p strong {
  color: #f5c400;
  font-weight: 600;
}

/* Right Panel - Formulario */
.right-panel {
  flex: 1;
  background: white;
  padding: 60px 40px;
}
@media (max-width: 991px) {
  .right-panel {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .right-panel {
    padding: 30px 20px;
  }
}
.right-panel h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #212529;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 575px) {
  .right-panel h3 {
    font-size: 1.25rem;
  }
}

#registroVehiculoForm {
  display: flex;
  flex-direction: column;
}
#registroVehiculoForm label {
  font-weight: 600;
  margin-top: 15px;
  color: #212529;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#registroVehiculoForm label:first-child {
  margin-top: 0;
}
#registroVehiculoForm input {
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
#registroVehiculoForm input:focus {
  outline: none;
  border-color: #ff5100;
  box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.1);
}
#registroVehiculoForm input::placeholder {
  color: #999;
  opacity: 0.7;
}
@media (max-width: 575px) {
  #registroVehiculoForm input {
    padding: 10px;
    font-size: 0.9rem;
  }
}
#registroVehiculoForm button {
  margin-top: 25px;
  padding: 12px;
  background-color: #ff5100;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: bold;
  cursor: pointer;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
#registroVehiculoForm button:hover {
  background-color: #e04400;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 81, 0, 0.3);
}
#registroVehiculoForm button:active {
  transform: translateY(0);
}
#registroVehiculoForm button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.3);
}
@media (max-width: 575px) {
  #registroVehiculoForm button {
    padding: 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 991px) {
  .pasos-content .left-panel {
    order: 1;
  }
  .pasos-content .right-panel {
    order: 2;
  }
}
.info-section {
  padding: 3rem 0;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.info-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 575px) {
  .info-section .container {
    padding: 0 0.5rem;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 991px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 575px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-10px);
  background: rgb(255, 255, 255);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 575px) {
  .info-card {
    padding: 1.5rem 1rem;
  }
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}
.info-card:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}
@media (max-width: 575px) {
  .info-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

.info-title {
  color: #2c5530;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .info-title {
    font-size: 1.25rem;
  }
}

.info-description {
  color: #4a5d4f;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
  .info-description {
    font-size: 0.9rem;
  }
}

.info-button {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #1e8e3e);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.info-button:hover {
  background: linear-gradient(135deg, #1e8e3e, #0d7129);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: white;
}
.info-button:focus {
  outline: none;
  border-color: rgba(37, 211, 102, 0.5);
}
@media (max-width: 575px) {
  .info-button {
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
  }
}

.info-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}
.info-card:nth-child(1) {
  animation-delay: 0.1s;
}
.info-card:nth-child(2) {
  animation-delay: 0.3s;
}
.info-card:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="50" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="90" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
  opacity: 0.3;
}

/*# sourceMappingURL=style.css.map */
