/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

html {
    font-size: 112.5%; /* Aumenta el tamaño base de la fuente de 16px a 18px para mejorar la legibilidad */
    scroll-behavior: smooth;
}

:root {
    /* Paleta Minimalista Coca-Cola */
    --bg-dark: #FFFFFF; /* Fondo principal blanco */
    --dark-purple: #FAFAFA; /* Fondo secundario gris muy claro */
    --gold: #E60000; /* Rojo principal Coca-Cola */
    --cream-light: #1A1A1A; /* Texto principal oscuro/negro */
    --white: #FFFFFF;
    --text-dark: #222222; /* Texto de cuerpo oscuro */
    --text-light: #555555; /* Texto secundario gris */
    --border-color: #E2E2E2; /* Bordes finos y sutiles */
    --shadow: rgba(0, 0, 0, 0.05); /* Sombra muy sutil */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--cream-light);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    width: 100%;
    padding: 15px 5%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
}

.official-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    padding: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.logo:hover .official-logo-img {
    transform: scale(1.05);
    border-color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.cta-header {
    background-color: var(--gold);
    color: var(--bg-dark) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--gold);
}

.cta-header:hover {
    background-color: transparent;
    color: var(--gold) !important;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    padding: 140px 5% 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(230, 0, 0, 0.08);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(230, 0, 0, 0.15);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--cream-light);
}

.hero-content h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(209, 167, 132, 0.2);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(209, 167, 132, 0.1);
}

.btn-secondary {
    padding: 16px 30px;
    color: var(--cream-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    width: 420px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 2;
    border: 1.5px solid var(--border-color);
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-avatar-logo {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 20px;
    background-color: var(--white);
    padding: 15px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 500px;
    border: 1.5px solid var(--gold);
    border-radius: 28px;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.3;
}

/* History Section */
.history {
    padding: 60px 5%;
    background-color: var(--dark-purple);
    display: flex;
    align-items: center;
    gap: 80px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.history-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.history-img .frame {
    width: 380px;
    height: 480px;
    border-radius: 20px;
    background: var(--white);
    border: 1.5px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.history-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.history-content {
    flex: 1.2;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
    position: relative;
    color: var(--cream-light);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin-top: 15px;
}

.history-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.history-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
}

/* Metodologia de Transformación */
.methodology {
    padding: 100px 5%;
    text-align: center;
}

.methodology .section-title::after {
    margin: 15px auto 0 auto;
}

.methodology-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 60px auto;
    font-weight: 300;
}

.methodology-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background-color: var(--dark-purple);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(209, 167, 132, 0.15);
    text-align: left;
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.method-icon svg {
    width: 32px;
    height: 32px;
}

.method-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--cream-light);
}

.method-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
}

/* Escalera de Valor - Products */
.products {
    padding: 100px 5%;
    text-align: center;
}

.products-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.products .section-title::after {
    margin: 15px auto 0 auto;
}

.section-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 15px auto 40px auto;
    font-weight: 300;
}

/* Tabs Navigation */
.catalog-tabs-container {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.catalog-tabs {
    display: flex;
    gap: 12px;
    background-color: var(--dark-purple);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    max-width: 100%;
    scroll-behavior: smooth;
}

.catalog-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    background-color: var(--gold);
    color: var(--bg-dark);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.15);
}

.tab-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.tab-btn.active .tab-icon {
    fill: var(--bg-dark);
}

/* Tab Content & Transitions */
.catalog-content {
    position: relative;
    width: 100%;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-pane.active {
    display: block;
}

/* Grid & Cards layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    #digitales .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1100px) {
    #digitales .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 550px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.product-card {
    background-color: var(--dark-purple);
    border-radius: 12px;
    padding: 15px 12px;
    text-align: left;
    box-shadow: 0 8px 24px var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px var(--shadow), 0 0 12px rgba(230, 0, 0, 0.04);
    border-color: var(--gold);
    background-color: var(--white);
}

.product-card:hover::before {
    opacity: 1;
}

.product-cover-container {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.02) 0%, rgba(209, 167, 132, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 6px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.product-cover-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-card:hover .product-cover-img {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 18px rgba(230, 0, 0, 0.12);
}

/* Premium Card specific */
.product-card.premium {
    background: var(--white);
    border: 1.5px solid var(--gold);
    box-shadow: 0 8px 24px rgba(230, 0, 0, 0.04);
}

.product-card.premium:hover {
    box-shadow: 0 14px 30px rgba(230, 0, 0, 0.1);
    border-color: var(--gold);
}

.product-card.signature-card {
    border: 2px solid var(--gold);
    background: var(--white);
}

.product-card.free-card {
    border: 1.5px dashed var(--gold);
    background-color: var(--dark-purple);
    box-shadow: 0 8px 24px var(--shadow);
}

.product-card.free-card h3 {
    font-size: 1.05rem;
    color: var(--gold);
    line-height: 1.3;
    margin-bottom: 6px;
}

.product-card.free-card .free-guide-meta {
    font-size: 0.72rem !important;
    font-style: italic;
    color: var(--cream-light);
    opacity: 0.95;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card.free-card p {
    font-size: 0.72rem !important;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--text-light);
}

.product-card.free-card .features-list li {
    font-size: 0.7rem !important;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.product-card.free-card .btn-card {
    font-size: 0.75rem !important;
    padding: 8px 10px;
    font-weight: 700;
}

/* Badges */
.badge-card {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    background-color: rgba(209, 167, 132, 0.12);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(209, 167, 132, 0.2);
    letter-spacing: 0.5px;
}

.badge-card.free {
    background-color: rgba(76, 175, 80, 0.12);
    color: #4CAF50;
    border-color: rgba(76, 175, 80, 0.2);
}

.badge-card.corporate {
    background-color: rgba(33, 150, 243, 0.12);
    color: #2196F3;
    border-color: rgba(33, 150, 243, 0.2);
}

.badge-card.signature {
    background: linear-gradient(90deg, #D1A784, #f3d4b6);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 2px 6px rgba(209, 167, 132, 0.2);
}

.product-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    margin-top: 10px;
    color: var(--cream-light);
    line-height: 1.3;
}

.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.price span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.72rem;
    margin-bottom: 12px;
    font-weight: 300;
    line-height: 1.35;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    margin-bottom: 15px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 0.7rem;
    color: var(--text-light);
}

.features-list li span {
    display: block;
    flex: 1;
    line-height: 1.3;
}

.features-list svg {
    width: 12px;
    height: 12px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-card {
    display: block;
    width: 100%;
    padding: 8px 10px;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--gold);
    background-color: transparent;
    color: var(--gold);
    font-size: 0.75rem;
}

.btn-card:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 4px 10px rgba(209, 167, 132, 0.2);
}

.product-card.premium .btn-card {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.product-card.premium .btn-card:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 5%;
    text-align: center;
}

.testimonials .section-title::after {
    margin: 15px auto 0 auto;
}

.testimonials-container {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 20px 10px 40px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--border-color);
    -webkit-overflow-scrolling: touch;
}

.testimonials-container::-webkit-scrollbar {
    height: 6px;
}

.testimonials-container::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.testimonials-container::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* WhatsApp Estilizado (Fiel a la captura real) */
.whatsapp-chat {
    flex: 0 0 350px;
    max-width: 350px;
    background-color: #efeae2; /* Fondo de WhatsApp */
    border-radius: 16px;
    box-shadow: 0 15px 35px var(--shadow);
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.15);
    transition: var(--transition);
}

.whatsapp-chat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.chat-header {
    background-color: #005c4b; /* Verde oscuro whatsapp */
    color: var(--white);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.chat-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.chat-info span {
    font-size: 0.75rem;
    opacity: 0.8;
    color: var(--white);
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png'); /* Pattern clásico */
    background-repeat: repeat;
}

.msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    position: relative;
    line-height: 1.4;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08);
    color: #111b21;
}

.msg.received {
    background-color: var(--white);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg.sent {
    background-color: #d9fdd3; /* Color verde de mensaje enviado whatsapp */
    align-self: flex-end;
    border-top-right-radius: 0;
}

.msg-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #667781;
    margin-top: 4px;
}

.msg-name {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: #111b21;
    margin-bottom: 2px;
}

.msg-name.blanca { color: #35a662; }
.msg-name.nati { color: #df6f38; }

/* Call to Action Final */
.final-cta {
    padding: 100px 5%;
    text-align: center;
    position: relative;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gold);
    padding: 80px 40px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(230, 0, 0, 0.15);
    border: none;
}

.cta-box h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-box .btn-primary {
    background-color: var(--white);
    color: var(--gold);
    border-color: var(--white);
    font-weight: 700;
}

.cta-box .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

/* Footer */
footer {
    padding: 40px 5%;
    text-align: center;
    background-color: var(--dark-purple);
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

footer p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 160px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        margin-top: 50px;
    }
    
    .history {
        flex-direction: column;
        gap: 50px;
    }
    
    .history-img .frame {
        width: 100%;
        max-width: 380px;
    }
    
    .methodology-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .method-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .official-logo-img {
        height: 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .image-container {
        width: 100%;
        height: 400px;
    }
    
    .hero-image::before {
        display: none;
    }
}

/* ==========================================
   NUEVAS SECCIONES INTERACTIVAS Y REDES
   ========================================== */

/* 1. Reproductor de Audios de Reprogramación */
.audios-section {
    padding: 100px 5%;
    text-align: center;
    border-bottom: 1px solid rgba(209, 167, 132, 0.1);
}

.audios-section .section-title::after {
    margin: 15px auto 0 auto;
}

.audios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.audio-card {
    background: var(--dark-purple);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(209, 167, 132, 0.15);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 35px var(--shadow);
}

.audio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 167, 132, 0.4);
    background: rgba(29, 12, 21, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.audio-info h3 {
    font-size: 1.4rem;
    color: var(--cream-light);
    margin-bottom: 10px;
    margin-top: 15px;
}

.audio-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.audio-player-container {
    width: 100%;
    background: rgba(42, 23, 34, 0.5);
    border-radius: 16px;
    padding: 15px;
    border: 1px solid rgba(209, 167, 132, 0.1);
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--bg-dark);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(209, 167, 132, 0.3);
}

.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(209, 167, 132, 0.5);
}

.play-btn svg {
    width: 20px;
    height: 20px;
}

.progress-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Estilización del input range (progreso) */
.progress-bar, .volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.progress-bar:hover, .volume-slider:hover {
    background: rgba(255, 255, 255, 0.3);
}

.progress-bar::-webkit-slider-thumb, .volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(209, 167, 132, 0.5);
    transition: transform 0.2s ease;
}

.progress-bar::-webkit-slider-thumb:hover, .volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.progress-bar::-moz-range-thumb, .volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(209, 167, 132, 0.5);
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-light);
    opacity: 0.8;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
}

.volume-btn:hover {
    color: var(--gold);
}

.volume-btn svg {
    width: 18px;
    height: 18px;
}

.volume-slider {
    width: 50px;
}

.audios-cta {
    margin-top: 50px;
}

.audios-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hidden {
    display: none !important;
}


/* 2. Stepper Interactivo (Mentoría VIP) */
.mentoria-section {
    padding: 100px 5%;
    border-bottom: 1px solid rgba(209, 167, 132, 0.1);
}

.mentoria-section .section-title::after {
    margin: 15px auto 0 auto;
}

.stepper-wrapper {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0 auto;
    padding-left: 50px;
}

/* Línea de fondo del stepper */
.stepper-progress-bar {
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
}

/* Línea de progreso dorada activa */
.stepper-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Controlado dinámicamente con JS */
    background: linear-gradient(to bottom, var(--gold) 0%, #FFF9F2 100%);
    border-radius: 2px;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    position: relative;
    background: var(--dark-purple);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.step-item:hover {
    border-color: var(--gold);
    background: var(--white);
}

/* Contenedor del número (nodo de la línea de tiempo) */
.step-number-container {
    position: absolute;
    left: -52px;
    top: 22px;
    z-index: 2;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--dark-purple);
    color: var(--text-light);
    border: 2px solid rgba(209, 167, 132, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

/* Estilos de paso activo */
.step-item.active {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 10px 25px var(--shadow);
}

.step-item.active .step-number {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.2);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.35rem;
    color: var(--cream-light);
    transition: color 0.3s ease;
}

.step-item.active .step-content h3 {
    color: var(--gold);
}

.step-short-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    margin-top: 5px;
}

/* Contenido colapsable */
.step-detail {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.3s ease;
}

.step-item.active .step-detail {
    max-height: 250px;
    opacity: 1;
    margin-top: 15px;
}

.step-detail p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid rgba(209, 167, 132, 0.1);
    padding-top: 15px;
    font-weight: 300;
}


/* 3. Hub de Redes Sociales Lateral */
.social-hub {
    padding: 80px 5%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-hub-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.social-hub-text {
    flex: 1.2;
    text-align: left;
}

.social-sidebar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 450px;
}

.social-row-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-purple);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 18px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
}

.social-row-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-row-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-row-icon svg {
    width: 20px;
    height: 20px;
}

.social-row-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream-light);
    margin: 0;
}

.social-row-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.social-row-action {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.social-row-card:hover {
    transform: translateX(5px);
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Hover styles per social network */
.instagram-row:hover .social-row-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}
.whatsapp-row:hover .social-row-icon {
    background-color: #25D366;
    color: #fff;
}
.youtube-row:hover .social-row-icon {
    background-color: #FF0000;
    color: #fff;
}
.tiktok-row:hover .social-row-icon {
    background-color: #010101;
    color: #fff;
}
.facebook-row:hover .social-row-icon {
    background-color: #1877F2;
    color: #fff;
}

@media (max-width: 768px) {
    .social-hub-container {
        flex-direction: column;
        gap: 40px;
    }
    .social-hub-text {
        text-align: center;
    }
    .social-sidebar-column {
        max-width: 100%;
    }
}

/* Ajustes Responsive para Nuevas Secciones */
@media (max-width: 768px) {
    .stepper-wrapper {
        padding-left: 40px;
    }
    
    .stepper-progress-bar {
        left: 15px;
    }
    
    .step-number-container {
        left: -42px;
        top: 20px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .audio-card {
        padding: 25px 15px;
    }

    .player-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .play-btn {
        align-self: center;
    }

    .volume-container {
        justify-content: space-between;
    }

    .volume-slider {
        width: 100px;
        flex-grow: 1;
    }
}

/* Botones de Pago Directo (ARS y USD) */
.btn-payment-container {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    width: 100%;
}

.btn-payment {
    flex: 1;
    padding: 8px 10px;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.72rem;
    transition: var(--transition);
    border: 1.5px solid var(--gold);
    text-decoration: none;
    display: inline-block;
}

.btn-payment.ars {
    background-color: var(--gold);
    color: var(--white) !important;
}

.btn-payment.ars:hover {
    background-color: transparent;
    color: var(--gold) !important;
}

.btn-payment.usd {
    background-color: transparent;
    color: var(--gold) !important;
}

.btn-payment.usd:hover {
    background-color: var(--gold);
    color: var(--white) !important;
}

/* ==========================================
   ESTILOS ADICIONALES: PRODUCTO ESTRELLA, HOT SALE & TESTIMONIOS
   ========================================== */

/* 1. Producto Estrella */
.star-product-section {
    padding: 40px 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.star-product-container {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 940px;
    margin: 20px auto 0 auto;
    text-align: left;
}

.star-product-cover {
    flex: 1.2;
    max-width: 420px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.star-cover-img {
    width: 100%;
    max-width: 390px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08), 0 0 20px rgba(230,0,0,0.06);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.star-product-cover:hover .star-cover-img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(230,0,0,0.15);
}

.star-badge {
    position: absolute;
    top: 15px;
    right: 30px;
    background-color: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(230,0,0,0.3);
}

.star-product-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.star-tag {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.star-product-content h3 {
    font-size: 1.6rem;
    line-height: 1.25;
    color: var(--cream-light);
}

.star-product-content p {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.45;
}

.star-includes h4 {
    font-size: 0.92rem;
    color: var(--cream-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.star-includes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.star-includes li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.star-icon {
    width: 15px;
    height: 15px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.star-pricing-box {
    background-color: var(--dark-purple);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.star-price {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.star-price .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.star-price .current-price {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
}

.star-price .current-price small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.vip-benefit-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem !important;
    color: var(--text-light);
    margin-bottom: 0 !important;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* 2. Hot Sale Semanal */
.hot-sale-section {
    padding: 80px 5% 40px 5%;
    background-color: var(--white);
}

.hot-sale-container {
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.03) 0%, rgba(209, 167, 132, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 15px 35px rgba(230, 0, 0, 0.06);
}

.hot-sale-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background-color: var(--gold);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 12px rgba(230,0,0,0.3);
}

.hot-sale-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hot-sale-text {
    flex: 1.5;
    text-align: left;
}

.hot-sale-text h3 {
    font-size: 2rem;
    color: var(--cream-light);
    margin-bottom: 15px;
}

.hot-sale-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 25px;
}

.hot-sale-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hot-sale-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hot-icon {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
}

.hot-sale-action-box {
    flex: 1;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 10px 25px var(--shadow);
}

.promo-expiry {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price-label {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.8;
}

.hot-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
}

/* 3. Testimonios en Fila Horizontal configurados en la sección correspondiente arriba */

/* Responsive Ajustes */
@media (max-width: 992px) {
    .star-product-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .star-product-cover {
        max-width: 100%;
    }
    
    .hot-sale-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hot-sale-action-box {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .testimonials-container {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: nowrap;
    }
    
    .whatsapp-chat {
        flex: 1 1 24%;
        max-width: 320px;
    }
}


