/*---------------------------------------
   CUSTOM-STYLES.CSS
   Navbar, Hero, Steps y componentes específicos
-----------------------------------------*/

/* ========== NAVBAR / TOPBAR ========== */
.topbar {
    padding: 16px 100px;
    border-bottom: 1px solid var(--line-soft);
    background: var(--bg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 50;
}

@media (max-width: 991px) {
    .topbar {
        padding: 16px 20px;
    }
}

/* Brand / Logo */
.brand {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
    transition: opacity 0.2s;
}

.brand:hover {
    opacity: 0.8;
}

/* Enlaces de navegación */
.nav-link-x {
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
    margin: 0 18px;
}

.nav-link-x:hover {
    color: var(--accent);
}

.nav-link-x.active {
    color: var(--accent);
}

@media (max-width: 991px) {
    .nav-link-x {
        margin: 0 12px;
    }
}

/* ========== BOTONES ========== */
.btn-dark-pill {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-full);
    padding: 11px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    transition: all 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-dark-pill:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-light-pill {
    background: var(--bg);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius-full);
    padding: 11px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-light-pill:hover {
    background: var(--bg-soft);
    color: var(--ink);
    text-decoration: none;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    padding: 10px 14px;
    font-size: 1.1rem;
    border: none;
    transition: all 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

@media (max-width: 576px) {
    .btn-dark-pill,
    .btn-light-pill {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

/* ========== BANNER DE ENVÍOS ========== */
#shipping-banner {
    background: #f7751ede;
    padding: 8px 0;
    text-align: center;
}

#shipping-banner .shipping-message p {
    color: #ffffff;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 50px;
}

@media (max-width: 991px) {
    .hero {
        padding: 50px 20px;
    }
}

/* Tag pill */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    border: 1px solid #ffd6c4;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

.tag-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

/* Hero title */
.hero-title {
    font-size: 4rem;
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-title .ghost {
    color: #bcbcbc;
}

/* Hero lead */
.hero-lead {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.5;
    max-width: 380px;
}

@media (max-width: 768px) {
    .hero-lead {
        max-width: 100%;
        font-size: 0.875rem;
    }
}

/* ========== HERO IMAGEN ========== */
.hero-img {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle at 60% 40%, #d8c8a0 0%, #8a6f4a 65%, #4a3520 100%);
}

.img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Chips flotantes */
.chip-float {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 7px 13px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
}

.chip-float .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.chip-float-dark {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    padding: 7px 13px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: #fff;
}

@media (max-width: 768px) {
    .chip-float,
    .chip-float-dark {
        font-size: 0.625rem;
        padding: 4px 10px;
    }
}

/* Tarjeta de receta flotante */
.recipe-pill {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s;
    cursor: pointer;
}

.recipe-pill:hover {
    transform: translateY(-2px);
}

.recipe-pill:hover .recipe-arrow {
    transform: translateX(4px);
}

.recipe-thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #d4915a;
}

.recipe-info {
    flex: 1;
    overflow: hidden;
}

.recipe-label {
    font-size: 0.6875rem;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-title {
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.recipe-ingredients {
    font-size: 0.6875rem;
    color: var(--ink-soft);
}

.recipe-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    transition: transform 0.2s;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .recipe-pill {
        padding: 10px 12px;
        gap: 10px;
    }
    .recipe-thumb {
        width: 36px;
        height: 36px;
    }
    .recipe-arrow {
        width: 32px;
        height: 32px;
    }
    .recipe-title {
        font-size: 0.875rem;
    }
}

/* ========== STEPS SECTION ========== */
.step-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number-large {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3.75rem;
    color: var(--accent);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.step-description {
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Steps Responsive */
@media (max-width: 992px) {
    .step-card {
        padding: 1.25rem;
    }
    .step-number-large {
        font-size: 2.25rem;
    }
    .step-title {
        font-size: 1.125rem;
    }
    .step-description {
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .step-card {
        padding: 1rem;
    }
    .step-number-large {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    .step-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .step-card {
        padding: 0.875rem;
        text-align: center;
    }
    .step-number-large {
        font-size: 1.75rem;
    }
    .step-title {
        font-size: 0.9375rem;
    }
    .step-description {
        font-size: 0.6875rem;
    }
}

/* ========== ANIMACIONES ========== */
.hero .col-lg-6:first-child > * {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.hero .col-lg-6:first-child > :nth-child(1) { animation-delay: 0.05s; }
.hero .col-lg-6:first-child > :nth-child(2) { animation-delay: 0.1s; }
.hero .col-lg-6:first-child > :nth-child(3) { animation-delay: 0.15s; }
.hero .col-lg-6:first-child > :nth-child(4) { animation-delay: 0.2s; }
.hero .col-lg-6:first-child > :nth-child(5) { animation-delay: 0.25s; }

.hero-img {
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* ========== PLANS / PRICING SECTION ========== */

/* Plan cards */
.plan-card {
    background: #fff;
    border-radius: 1.125rem;  /* 18px */
    padding: 1.5rem;          /* 24px */
    /* height: 100%; */
    border: 1px solid var(--line-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Featured / Popular plan */
.plan-card.featured {
    background: #0e0e0e;
    color: #fff;
    border-color: #0e0e0e;
}

.plan-card.featured .text-ink-muted {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 14px;
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: 1.125rem;    /* 18px */
    right: 1.125rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.6875rem;  /* 11px */
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* Icono del plan */
.plan-pic {
    width: 4rem;      /* 64px */
    height: 4rem;
    border-radius: 1rem;  /* 16px */
    background: #fef0ea;
    color: var(--accent);
    font-size: 1.75rem;   /* 28px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}

.plan-card.featured .plan-pic {
    background: #2a1a14;
}

/* Nombre del plan */
.plan-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;   /* 28px */
    letter-spacing: -0.025em;
    margin-bottom: 0.25rem;
}

/* Precio */
.plan-amount {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.375rem;  /* 38px */
    letter-spacing: -0.025em;
    line-height: 1;
}

/* Botón suscribir */
.btn-sub {
    width: 100%;
    padding: 0.75rem;     /* 12px */
    border-radius: var(--radius-full);
    font-size: 0.8125rem; /* 13px */
    font-weight: 500;
    background: var(--ink);
    color: #fff;
    border: none;
    margin-top: 1.25rem;  /* 20px */
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-sub:hover {
    background: #000;
    transform: translateY(-1px);
}

.plan-card.featured .btn-sub {
    background: #fff;
    color: var(--ink);
}

.plan-card.featured .btn-sub:hover {
    background: #f0f0f0;
}

/* Select personalizado para Plan Individual */
#paquete {
    border-radius: var(--radius-full);
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    border: 1px solid var(--line);
    background: var(--bg);
    width: 100%;
    cursor: pointer;
}

#paquete:focus {
    outline: none;
    border-color: var(--accent);
}

/* ========== RESPONSIVE PLANS ========== */
@media (max-width: 991px) {
    .plan-card {
        padding: 1.25rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .plan-amount {
        font-size: 2rem;
    }
    
    .plan-pic {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .plan-card {
        padding: 1rem;
    }
    
    .plan-name {
        font-size: 1.25rem;
    }
    
    .plan-amount {
        font-size: 1.75rem;
    }
    
    .popular-badge {
        font-size: 0.625rem;
        padding: 0.1875rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .btn-sub {
        padding: 0.625rem;
        font-size: 0.75rem;
    }
}

/* ========== RESULTS SECTION ========== */

/* Sección oscura */
.section-dark {
    background: var(--bg-dark);
    padding: 5rem 0;
}

/* Eyebrow */
.section-dark .eyebrow {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Título principal */
.results-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .results-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .results-title {
        font-size: 4rem;
    }
}

/* Texto lead */
.results-lead {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    max-width: 340px;
}

@media (max-width: 768px) {
    .results-lead {
        max-width: 100%;
    }
}

/* Cards de resultados */
.results-card {
    background: var(--bg-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.results-card:hover {
    border-color: rgba(255, 87, 34, 0.5);
    transform: translateY(-3px);
}

/* Icono */
.results-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 87, 34, 0.12);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
}

/* Título de cada card */
.results-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Texto de cada card */
.results-card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .section-dark {
        padding: 4rem 0;
    }
    
    .results-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-dark {
        padding: 3rem 0;
        text-align: center;
    }
    
    .results-title {
        font-size: 2rem;
    }
    
    .results-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .results-card {
        text-align: center;
        padding: 1.25rem;
    }
    
    .results-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.25rem;
    }
    
    .results-card-title {
        font-size: 1.125rem;
    }
    
    .results-card-text {
        font-size: 0.8125rem;
    }
}

@media (max-width: 576px) {
    .results-title {
        font-size: 1.75rem;
    }
    
    .results-card {
        padding: 1rem;
    }
    
    .results-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* ========== FOOTER ========== */

.site-footer {
    background: #0e0e0e;
    color: #fff;
    padding: 4rem 0 2rem;
}

/* Brand del footer */
.footer-brand {
    transition: opacity 0.2s;
}

.footer-brand:hover {
    opacity: 0.8;
}

.footer-brand-mark {
    width: 32px;
    height: 32px;
    background: #fff;
    color: #0e0e0e;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.footer-brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}

/* Descripción */
.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 280px;
}

/* Headings del footer */
.footer-heading {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Lista de enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Contacto */
.footer-contact p {
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: rgba(255, 255, 255, 0.5);
    width: 20px;
    font-size: 0.875rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent);
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Fila inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Métodos de pago */
.footer-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-badge {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.payment-badge i {
    font-size: 0.75rem;
}

/* Copyright */
.footer-copyright p {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-copyright a {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--accent);
}

/* ========== RESPONSIVE FOOTER ========== */
@media (max-width: 991px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-description {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-heading {
        margin-top: 1rem;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .payment-badge {
        padding: 0.1875rem 0.5rem;
        font-size: 0.625rem;
    }
}

/*---------------------------------------
   MODAL DE SUSCRIPCIÓN - ESTILOS HIBRIDOS
-----------------------------------------*/

/* ========== MODAL BASE ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1100;
}

/* Modal content sin padding - contenido maneja su espacio */
#subscriptionModal .modal-content {
    padding: 0 !important;
    height: auto !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    width: 95vw;
    max-width: 95vw;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
    color: #202020;
    z-index: 10;
    background: none;
    border: none;
}

.close-modal:hover {
    color: #29ca8e;
}

/* ========== CHECKOUT LAYOUT ========== */
.checkout-layout {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

/* Columna izquierda */
.checkout-left {
    flex: 1;
    padding: 40px 24px 28px;
    overflow-y: auto;
    max-height: 90vh;
    box-sizing: border-box;
}

/* Columna derecha - oculta en móvil */
.checkout-right {
    display: none;
}

/* Desktop: dos columnas */
@media (min-width: 768px) {
    #subscriptionModal .modal-content {
        max-width: 860px !important;
        width: 90vw !important;
        max-height: 88vh !important;
    }

    .checkout-layout {
        flex-direction: row;
        overflow: hidden;
        max-height: 88vh;
    }

    .checkout-left {
        flex: 1;
        padding: 48px 36px 32px;
        max-height: 88vh;
        overflow-y: auto;
        border-right: 1px solid #e8e8e8;
    }

    .checkout-right {
        display: block;
        width: 300px;
        flex-shrink: 0;
        background: #f7f8fa;
        padding: 48px 24px 32px;
        overflow-y: auto;
        max-height: 88vh;
        box-sizing: border-box;
    }
}

/* ========== RESUMEN DEL PEDIDO ========== */
.order-summary {
    position: sticky;
    top: 0;
}

.os-plan-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.os-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.os-plan-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.os-plan-info strong {
    font-size: 14px;
    color: #202020;
    line-height: 1.3;
    word-break: break-word;
}

.os-plan-desc {
    font-size: 12px;
    color: #757575;
}

.os-price {
    font-size: 14px;
    font-weight: 600;
    color: #202020;
    white-space: nowrap;
}

.os-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.os-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.os-free {
    color: #29ca8e;
    font-weight: 500;
}

.os-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    /* font-weight: 700; */
    color: #202020;
    margin-top: 8px;
    /* padding-top: 8px; */
    /* border-top: 1px solid #e0e0e0; */
}

/* ========== FORMULARIO ========== */
#modalTitle {
    font-size: 20px;
    font-weight: 700;
    color: #202020;
    margin: 0 0 20px;
}

.co-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #9e9e9e;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 6px;
}

/* Campos de formulario - ESTILO BORDE INFERIOR */
#subscriptionForm .form-control {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #e8e8e8;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 12px 0;
    padding: 12px 0;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.2s;
    color: #202020;
}

#subscriptionForm .form-control:focus {
    border-bottom-color: #29ca8e;
    outline: none;
}

#subscriptionForm input {
    height: 48px;
}

#subscriptionForm input::placeholder {
    color: #bbb;
    font-weight: 400;
}

/* Botón continuar */
.co-submit-btn {
    width: 100%;
    margin-top: 18px;
    background: #29ca8e;
    border-radius: 50px;
    border: 0;
    color: #fff;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.co-submit-btn:hover {
    background: #1e9e6e;
    transform: translateY(-1px);
}

/* ========== RESUMEN DEL CLIENTE ========== */
.co-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.co-summary-text {
    font-size: 13px;
    color: #333;
    margin: 0 0 4px;
    white-space: pre-line;
    line-height: 1.55;
}

.co-edit-btn {
    background: none;
    border: none;
    color: #29ca8e;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    white-space: nowrap;
    flex-shrink: 0;
}

.co-edit-btn:hover {
    color: #1e9e6e;
}

.co-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 12px 0;
}

/* ========== BOTÓN VOLVER ========== */
.co-back-btn {
    display: block;
    background: none;
    border: none;
    color: #29ca8e;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 0 14px;
    text-decoration: none;
}

.co-back-btn:hover {
    text-decoration: underline;
}

/* ========== MÉTODOS DE PAGO ========== */
.payment-method-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.payment-method-option:hover {
    border-color: #29ca8e;
    background: #f0fdf7;
}

.pm-icon {
    font-size: 24px;
}

.pm-text {
    flex: 1;
}

.pm-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #202020;
}

.pm-text span {
    font-size: 12px;
    color: #757575;
}

/* ========== TRANSFERENCIA ========== */
.transfer-detail {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
}

.transfer-detail p {
    margin-bottom: 8px;
    font-size: 13px;
    color: #333;
}

.transfer-warning {
    font-size: 12px;
    color: #666;
    background: #fff3e0;
    padding: 10px;
    border-radius: 8px;
    margin: 12px 0;
}

.transfer-warning a {
    color: #29ca8e;
    text-decoration: none;
}

/* ========== CONFIRMACIÓN ========== */
.confirmation-panel {
    text-align: center;
    padding: 24px;
}

.confirmation-panel h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #202020;
}

.confirmation-panel p {
    color: #666;
    font-size: 14px;
}

/* ========== BOTONES GENERALES ========== */
.section-btn.pricing-btn {
    background: #29ca8e;
    border-radius: 50px;
    border: 0;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
}

.section-btn.pricing-btn:hover {
    background: #1e9e6e;
    transform: translateY(-1px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 576px) {
    .checkout-left {
        padding: 24px 16px 20px;
    }
    
    #modalTitle {
        font-size: 18px;
    }
    
    #subscriptionForm .form-control {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .co-submit-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/*---------------------------------------
   MODAL AVISO DE PRIVACIDAD
-----------------------------------------*/
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.privacy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.privacy-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.privacy-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--ink-soft);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}

.privacy-modal-close:hover {
    color: var(--ink);
}

.privacy-modal-body h1 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.privacy-modal-body h2 {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
    margin-top: 1.25rem;
    margin-bottom: 0.375rem;
}

.privacy-modal-body p,
.privacy-modal-body li {
    font-size: 0.75rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 0.375rem;
}

.privacy-modal-body ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.privacy-modal-body a {
    color: var(--accent);
    text-decoration: none;
}

.privacy-modal-body a:hover {
    text-decoration: underline;
}

.privacy-updated {
    font-size: 0.6875rem;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
}

@media (max-width: 576px) {
    .privacy-modal-dialog {
        padding: 1.5rem 1.25rem;
        max-height: 90vh;
        border-radius: var(--radius-lg);
    }
}
