:root{
        /* --color-primary: #FF6600; */
        --color-primary: #F89300;
        --color-secondary: #004E9A;
        --color-text: #ffffff;
    }
.bg-primary { background-color: var(--color-primary); }
.text-primary { color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.text-secondary { color: var(--color-secondary); }
.text-title { color: var(--color-text); }
.border-primary { border-color: var(--color-primary); }
        
body { 
    font-family: 'Inter', sans-serif; }
    .hero-clip {
    clip-path: ellipse(100% 100% at 50% 0%);
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.08);
}

.whatsapp-float i {
    font-size: 34px;
    line-height: 1;
}

.whatsapp-tooltip {
    position: fixed;
    bottom: 98px;
    right: 20px;
    background: rgba(255, 255, 255, 0.96);
    color: #1f2937;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    max-width: 250px;
    z-index: 100;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 26px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.96);
    transform: rotate(45deg);
    border-radius: 4px;
}

.header-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    padding: 16px 24px;
}

.header-container {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0f4c97;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1f4ea3;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(31, 78, 163, 0.25);
    transition: all 0.3s ease;
}

.btn-header-cta:hover {
    background: #163d82;
    transform: translateY(-2px);
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

.mobile-icon-btn,
.mobile-cta-btn,
.close-menu-btn {
    border: none;
    outline: none;
    cursor: pointer;
}

.mobile-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #1f4ea3;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f89300;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(248, 147, 0, 0.28);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-menu-modal {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.18);
    transition: left 0.3s ease;
    padding: 24px 22px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-modal.active {
    left: 0;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
}

.mobile-menu-header img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.close-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #334155;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: #0b3a82;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #1f4ea3;
    padding-left: 6px;
}

.mobile-nav-cta {
    margin-top: 10px;
    text-align: center;
    background: #f89300;
    color: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    border-bottom: none;
    box-shadow: 0 10px 20px rgba(248, 147, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

/* Tablet y mobile */
@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .header-nav {
        padding: 14px 18px;
    }

    .header-logo img {
        height: 42px;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .header-container {
        gap: 12px;
    }

    .header-logo img {
        height: 36px;
    }

    .mobile-cta-btn {
        padding: 0 14px;
        font-size: 13px;
    }

    .mobile-menu-modal {
        width: 290px;
        padding: 20px 18px 24px;
    }

    .mobile-nav-link {
        font-size: 20px;
    }
}

.btn-cta {
    display: inline-block;
    background: #F89300;
    color: #fff;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--color-primary);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.45);
}

.btn-cta:active {
    transform: scale(0.98);
}

@media (max-width: 600px) {
    .btn-cta {
        display: block;              /* ocupa todo el ancho */
        width: 100%;
        text-align: center;          /* centra el texto */
        padding: 12px 16px;          /* más compacto */
        font-size: 14px;             /* más pequeño */
        line-height: 1.3;            /* mejor lectura */
        border-radius: 50px;
    }
}

.icon-img {
    display: flex;
    justify-content: center;
}

.icon-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.icon-img img:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.card-3d {
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: scale(1.05) translateY(-8px);
}

.payment-accordion {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.payment-accordion .accordion-toggle {
    cursor: pointer;
}

.payment-accordion .accordion-content {
    animation: fadeAccordion 0.25s ease;
}

@keyframes fadeAccordion {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fondo azul tipo tarjeta premium */
.form-premium {
    background: #072D70;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Inputs */
.input-custom {
    background: #e5e7eb;
    border: none;
    transition: all 0.25s ease;
}

.input-custom:focus {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.4);
}

/* Terms */
.terms-wrap {
    padding-top: 6px;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.terms-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #F89300;
    flex-shrink: 0;
}

.terms-label a {
    color: #F89300;
    font-weight: 700;
    text-decoration: underline;
}

.terms-label a:hover {
    color: #ffad33;
}

/* Botón */
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-secondary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 600px) {
    .terms-label {
        font-size: 13px;
    }

    .btn-secondary {
        width: 100%;
        min-width: unset;
    }
}

/* Botón estilo gradiente como tu referencia */
.btn-pago {
    background: linear-gradient(135deg, #FF6600, #FF6600);
    color: #fff;
    box-shadow: 0 10px 25px rgba(247, 122, 5, 0.4);
}

.btn-pago:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(252, 124, 4, 0.6);
}

.phone-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.phone-code {
    width: 130px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #e5e7eb;
    color: #374151;
    border: none;
    outline: none;
}

.phone-number {
    flex: 1;
}

@media (max-width: 768px) {
    .phone-group {
        flex-direction: column;
    }

    .phone-code {
        width: 100%;
        min-width: 100%;
    }
}

.btn-wsp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover elegante */
.btn-wsp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
}

/* Icono */
.btn-wsp .whats {
    font-size: 26px;
    background: #fff;
    color: #25D366;
    border-radius: 50%;
    padding: 6px;
    flex-shrink: 0;
}

/* Texto */
.btn-wsp .text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn-wsp .text small {
    font-size: 11px;
    opacity: 0.9;
}

.btn-wsp .text {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .btn-wsp {
        padding: 10px 18px;
        gap: 8px;
    }

    .btn-wsp .whats {
        font-size: 22px;
        padding: 5px;
    }

    .btn-wsp .text {
        font-size: 14px;
    }

    .btn-wsp .text small {
        font-size: 10px;
    }
}

.cta-warning {
  grid-column: 1 / -1;
  justify-self: center;
  
  margin-top: 40px;
  padding: 20px 50px;
  width: min(100%, 850px);

  background: #ffffff;
  color: var(--color-secondary);

  text-align: center;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;

  border: 4px solid var(--color-primary);
  border-radius: 40px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.cta-warning strong {
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 768px) {
  .cta-warning {
    margin-top: 20px;
    padding: 20px 24px;
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    line-height: 1.4;
  }

  .cta-warning strong {
    font-size: 22px;
  }
}

/*
+++++++++++++++++++++++
# Footer web
+++++++++++++++++++++++
*/

.footer {
  margin-top: 30px;
  background-color: var(--color-secondary);
  color: #fff;
  padding: 28px 20px 34px;
  border-top: 10px solid var(--color-primary);
}

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr; 
  gap: 60px;
  align-items: start;
}

.footer-section {
  text-align: left;
}

.logo-section img {
  width: 210px;
  max-width: 100%;
  margin-bottom: 22px;
  display: block;
}

.logo-section p {
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.contact-section h2,
.links-section h2,
.purpose-section h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-section p,
.links-section ul,
.purpose-section p {
  color: #fff;
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
}

.contact-section p {
  margin-bottom: 22px;
  font-weight: 600;
  max-width: 700px; 
}

.links-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-section ul li {
  margin-bottom: 18px;
}

.links-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.links-section ul li a:hover {
  opacity: 0.8;
}

.purpose-section p {
  max-width: 290px;
  text-align: justify;
  font-weight: 600;
}

/*
+++++++++++++++++++++++
# Footer tablet/mobile
+++++++++++++++++++++++
*/

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .contact-section p {
    max-width: 100%;
  }

  .purpose-section p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 24px 20px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .footer-section {
    text-align: left;
  }

  .logo-section img {
    width: 180px;
    margin-bottom: 16px;
  }

  .logo-section p,
  .contact-section p,
  .links-section ul li a,
  .purpose-section p {
    font-size: 15px;
  }

  .contact-section h2,
  .links-section h2,
  .purpose-section h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .contact-section p {
    margin-bottom: 14px;
  }

  .links-section ul li {
    margin-bottom: 12px;
  }

  .purpose-section p {
    text-align: left;
  }
}

.pricing-section {
  overflow-x: hidden;
}

.pricing-card {
  width: 100%;
}

.offer-ribbon {
  position: absolute;
  top: 18px;
  right: -42px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 52px;
  transform: rotate(45deg);
  transform-origin: center;
  letter-spacing: 0.5px;
  z-index: 2;
}

.price-main {
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap;
}

.pricing-table-desktop {
  display: block;
}

.pricing-mobile-list {
  display: none;
}

.pricing-mobile-item {
  background: #f8f8f8;
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  margin-bottom: 14px;
}

.service-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.service-prices {
  display: grid;
  gap: 8px;
}

.service-prices .label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #8b8b8b;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.old-price {
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 700;
}

.new-price {
  font-size: 16px;
  color: #1f2937;
  font-weight: 800;
}

.new-price.free {
  color: #16a34a;
}

.total-item {
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
}

.total-title {
  font-size: 20px;
}

.total-price {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 900;
  white-space: nowrap;
}

.benefits-list span {
  line-height: 1.5;
}

@media (max-width: 767px) {
  .pricing-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pricing-card {
    padding: 28px 16px 24px;
    border-radius: 24px;
  }

  .offer-ribbon {
    top: 14px;
    right: -46px;
    font-size: 12px;
    padding: 8px 48px;
  }

  .price-main {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    white-space: nowrap;
  }

  .pricing-table-desktop {
    display: none;
  }

  .pricing-mobile-list {
    display: block;
  }

  .benefits-list {
    max-width: 100%;
    font-size: 14px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .pricing-mobile-list {
    display: none;
  }

  .pricing-table-desktop {
    display: block;
  }
}