: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: var(--color-primary);
    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: #e08702;
    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 {
    color: #111827;
}

/* .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;
  }
}

/* Precios */

.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-wrapper {
  width: 100%;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table thead th {
  padding: 16px 14px;
  font-weight: 700;
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  border-bottom: 2px solid #f1f5f9;
}

.pricing-table tbody td {
  padding: 18px 14px;
  font-size: 18px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 45%;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 30%;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: 25%;
}

.pricing-table tbody td:first-child {
  font-weight: 500;
  color: #111827;
}

.old-price-cell {
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 700;
}

.free-cell {
  color: #16a34a;
  font-weight: 800;
}

.included-cell {
  color: #111827;
  font-weight: 800;
}

.total-row {
  background: #f9fafb;
}

.total-row td:first-child {
  font-weight: 900;
  font-size: 28px;
}

.total-old {
  font-weight: 800;
}

.total-price-cell {
  color: var(--color-primary);
  font-size: 34px;
  font-weight: 900;
  white-space: nowrap;
}

.benefits-list span {
  line-height: 1.5;
}

@media (max-width: 767px) {
  .pricing-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-card {
    width: 100%;
    padding: 26px 10px 24px;
    border-radius: 22px;
  }

  .offer-ribbon {
    top: 12px;
    right: -48px;
    font-size: 11px;
    padding: 8px 46px;
  }

  .price-main {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .pricing-table thead th {
    padding: 10px 6px;
    font-size: 9px;
    line-height: 1.25;
  }

  .pricing-table tbody td {
    padding: 12px 6px;
    font-size: 13px;
    line-height: 1.35;
  }

  .pricing-table th:nth-child(1),
  .pricing-table td:nth-child(1) {
    width: 46%;
  }

  .pricing-table th:nth-child(2),
  .pricing-table td:nth-child(2) {
    width: 27%;
  }

  .pricing-table th:nth-child(3),
  .pricing-table td:nth-child(3) {
    width: 27%;
  }

  .pricing-table tbody td:first-child {
    font-size: 13px;
    font-weight: 600;
  }

  .old-price-cell,
  .free-cell,
  .included-cell {
    font-size: 13px;
  }

  .total-row td:first-child {
    font-size: 18px;
  }

  .total-price-cell {
    font-size: 20px;
  }

  .benefits-list {
    max-width: 100%;
    font-size: 14px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .pricing-card {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* btn-mercado-pago */
.mp-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background-color: #FFE600;
    color: #2D3277;

    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;

    padding: 12px 18px;
    border-radius: 8px;
    border: 2px solid #E6C800;

    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 0 #D4B100;

    max-width: 100%;
}

.mp-btn img {
    height: 28px;
    width: auto;
    display: block;
}

.mp-btn span {
    display: inline-block;
}

.mp-btn:hover {
    background-color: #FFD100;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 #D4B100;
}

.mp-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #D4B100;
}

.mp-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 0 #D4B100;
}

@media (max-width: 640px) {
    .mp-btn-wrapper {
        margin-top: 16px;
    }

    .mp-btn {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
        padding: 12px 14px;
        gap: 8px;
        white-space: normal;
    }

    .mp-btn img {
        height: 24px;
    }
}

/* Vistas de exito - rechazo - pendiente - en pagos */
/*
==============================
VISTAS DE RESPUESTA DE PAGO
success.php / failure.php / pending.php
==============================
*/

/*
==============================
VISTAS DE RESPUESTA DE PAGO
success.php / failure.php / pending.php
==============================
*/

.status-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(0, 78, 154, 0.05) 0%, rgba(248, 147, 0, 0.04) 100%);
}

.status-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 32px;
    padding: 56px 48px;
    text-align: center;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.status-success {
    border-top: 8px solid #10b981;
}

.status-failure {
    border-top: 8px solid #ef4444;
}

.status-pending {
    border-top: 8px solid #f59e0b;
}

.status-icon-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.status-icon-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    user-select: none;
    overflow: hidden;
}

/* Para asegurar centrado visual del símbolo */
.status-icon-circle span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    text-align: center;
    transform: translateY(-1px);
}

/* SUCCESS */
.status-success .status-icon-circle {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #047857;
    border: 6px solid rgba(4, 120, 87, 0.12);
}

/* FAILURE */
.status-failure .status-icon-circle {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #b91c1c;
    border: 6px solid rgba(185, 28, 28, 0.12);
}

/* PENDING */
.status-pending .status-icon-circle {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #b45309;
    border: 6px solid rgba(180, 83, 9, 0.12);
}

.status-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 22px;
    text-transform: uppercase;
}

.status-text {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    font-weight: 500;
}

.status-text strong {
    color: var(--color-secondary);
    font-weight: 800;
}

.status-mail {
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
    word-break: break-word;
}

.status-mail:hover {
    text-decoration: underline;
}

.status-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.status-actions .btn-cta {
    min-width: 280px;
}

/*
==============================
RESPONSIVE
==============================
*/
@media (max-width: 991px) {
    .status-page {
        padding: 50px 18px;
    }

    .status-card {
        padding: 44px 30px;
        border-radius: 26px;
    }

    .status-icon-circle {
        width: 150px;
        height: 150px;
        font-size: 68px;
    }

    .status-text {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (max-width: 600px) {
    .status-page {
        min-height: auto;
        padding: 36px 14px;
    }

    .status-card {
        padding: 34px 18px;
        border-radius: 22px;
    }

    .status-icon-wrap {
        margin-bottom: 22px;
    }

    .status-icon-circle {
        width: 118px;
        height: 118px;
        font-size: 52px;
        border-width: 4px;
    }

    .status-title {
        margin-bottom: 16px;
    }

    .status-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .status-actions {
        margin-top: 22px;
    }

    .status-actions .btn-cta {
        min-width: unset;
        width: 100%;
    }
}

/* Imagen en escala de grises por defecto, color al hover */
#img-trabajando {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

#img-trabajando:hover {
    filter: grayscale(0%);
}

/* Badge tamaño fijo */
.badge-sunafil {
    width: 160px;
    height: 160px;
}

/* Imagen en escala de grises por defecto, color al hover */
#img-trabajando {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

#img-trabajando:hover {
    filter: grayscale(0%);
}

/* Badge tamaño fijo en desktop */
.badge-sunafil {
    width: 160px;
    height: 160px;
}

/* Badge más pequeño en mobile */
@media (max-width: 768px) {
    .badge-sunafil {
        width: 110px;
        height: 110px;
        padding: 12px;
        border-radius: 1.2rem;
    }

    .badge-sunafil span.text-3xl {
        font-size: 1.3rem;
    }

    .badge-sunafil span.text-xs {
        font-size: 0.55rem;
        letter-spacing: 0.05em;
    }

    .badge-sunafil svg {
        width: 158px;
        height: 158px;
        margin-bottom: 4px;
    }
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

/* Fix scroll horizontal en recomendaciones */
#recomendaciones {
    overflow-x: hidden;
}

#recomendaciones h2 {
    font-size: 45px;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    #recomendaciones h2 {
    font-size: 25px;
    word-break: break-word;
    overflow-wrap: break-word;
}

}

/* Fix select de código de país en mobile dentro del form */
@media (max-width: 768px) {
    .phone-group {
        flex-direction: row;
    }

    .phone-group .phone-code {
        width: 130px;
        min-width: 130px;
    }
}