/* Suscripción Landing Page Styles */
:root {
    --primary: #7F500B;
    --primary-light: #A67C45;
    --secondary: #7a2932;
    --bg-beige: #E5D5C6;
    --text-dark: #232323;
    --text-light: #555555;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.suscripcion-landing {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.suscripcion-landing h1, 
.suscripcion-landing h2, 
.suscripcion-landing h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Hero Section */
.hero-subscription {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-subscription::after {
    display: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    z-index: 5;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero-content h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
}

.hero-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    max-width: 90%;
    min-width: 360px;
    padding: 13px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    text-shadow: none;
    transition: all 0.3s ease;
}

.hero-bullet:hover {
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-3px);
}


.hero-bullet svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: var(--primary);
}

.hero-bullet span {
    color: var(--text-dark);
    text-shadow: none;
}

.cta-primary {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
    box-shadow: 0 10px 20px rgba(127, 80, 11, 0.3);
    text-decoration: none;
}

.cta-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


/* Steps Section */
.section-steps {
    padding: 100px 0;
    background-color: var(--bg-beige);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 35px 30px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    opacity: 1;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Benefits Section */
.section-benefits {
    padding: 100px 0;
}

.benefits-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefits-content {
    flex: 1;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Carousel Section */
.section-products {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.product-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}

.product-carousel {
    display: flex;
}

.product-item {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    margin: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.product-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.product-item img {
    max-width: 180px;
    height: auto;
    margin-bottom: 30px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-item:hover img {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.2));
}

.product-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 600;
}


.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-controls button {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-controls button:hover {
    background: var(--text-dark);
    transform: scale(1.1);
}

.tns-outer {
    position: relative;
}

.tns-nav {
    text-align: center;
    margin-top: 20px;
}

.tns-nav button {
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0 5px;
    border-radius: 50%;
    background: #ddd;
    border: none;
}

.tns-nav button.tns-nav-active {
    background: var(--primary);
}

/* FAQ Section */
.section-faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Animations */
.step-card, .benefits-content, .product-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.step-card.animate-in, 
.benefits-content.animate-in, 
.product-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
/* Reverted header override as per user request */
.page-template-page-suscrupcion #c-header,
.page-template-page-suscripcion #c-header {
    /* Normal header styles inherit from global */
}

@media (max-width: 768px) {
    .hero-bullets {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 38px;
    }

    .hero-bullet {
        width: 100%;
        max-width: 360px;
        min-width: 0;
        padding: 12px 18px;
        font-size: 0.75rem;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .benefits-layout {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}


/* Ejemplo práctico */
.section-example {
    background-color: var(--bg-beige);
    padding: 90px 0;
}

.section-example .container {
    background: var(--white);
    padding: 55px 70px;
    box-shadow: var(--shadow);
    max-width: 850px;
}

.section-example .section-title {
    margin-bottom: 30px;
}

.section-example p {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .section-example {
        padding: 70px 20px;
    }

    .section-example .container {
        padding: 40px 25px;
    }
}