:root {
    /* New Identity Visual Palette (from user reference) */
    --burgundy: #4a1313;
    /* Regenera Dark */
    --burgundy-dark: #370e0e;
    --burgundy-deep: #250a0a;
    --gold: #CAB194;
    /* Regenera Gold */
    --gold-light: #e2d4c3;
    --gold-hover: #bca182;
    --sand-bg: #f9f8f7;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-text: #666666;

    /* New Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--black);
    background-color: #fafaf9;
    /* Stone-50 feel */
    overflow-x: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(74, 19, 19, 0.2);
    background: var(--burgundy-deep);
    border: 2px solid var(--burgundy);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: var(--font-serif);
    font-weight: 700;
}

.italic {
    font-style: italic;
}

p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-text);
    line-height: 1.7;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.max-width-md {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-burgundy {
    color: var(--burgundy);
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.bg-white {
    background-color: var(--white);
}

.bg-burgundy {
    background-color: var(--burgundy);
}

.bg-burgundy-dark {
    background-color: var(--burgundy-dark);
}

.bg-sand-light {
    background-color: var(--sand-bg);
}

.m-top {
    margin-top: 20px;
}

.m-top-lg {
    margin-top: 60px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-12 {
    margin-bottom: 48px;
}

.mb-16 {
    margin-bottom: 64px;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background-color: var(--gold);
    color: var(--burgundy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(74, 19, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    height: 45px;
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(74, 19, 19, 0.95) 30%, rgba(74, 19, 19, 0.6) 100%), url('bg_hero_desk.png');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

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

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    z-index: 10;
    perspective: 1000px;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
}

.floating {
    animation: floatAndSwing 6s ease-in-out infinite;
}

@keyframes floatAndSwing {

    0%,
    100% {
        transform: translateX(-0px) rotateY(-20deg) rotate(-0deg);
    }

    50% {
        transform: translateX(0px) rotateY(20deg) rotate(0deg);
    }
}

/* Section Common */
section {
    padding: 100px 0;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    padding: 60px 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: var(--burgundy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pillar-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--black);
    text-transform: uppercase;
}

/* Audience Section (Burgundy Grid) */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 20px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(202, 177, 148, 0.2);
    padding: 35px;
    border-radius: 16px;
}

.audience-card h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.audience-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.audience-card.custom {
    border-style: dashed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-card.custom span {
    font-style: italic;
    color: var(--gold);
    font-size: 1.4rem;
    font-family: var(--font-serif);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.btn-protocolo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 30px;
    background: linear-gradient(to top, #711924, #B44653);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-protocolo:hover {
    filter: brightness(1.2);
}

.btn-protocolo svg {
    filter: brightness(0) invert(1);
}

.price-card .card-header {
    padding: 60px 30px;
    background: #fafaf9;
    border-bottom: 1px solid #f0efed;
    text-align: center;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.price-card .subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #999;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.price-card .price-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
}

.price-card .price-term {
    font-size: 0.85rem;
    color: #bbb;
    display: block;
    margin-top: 5px;
}

.card-body {
    padding: 40px 30px;
    flex-grow: 1;
}

.list-check {
    list-style: none;
}

.list-check li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.list-check li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.gift-box {
    background: #fafaf9;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
}

.gift-box strong {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--burgundy);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.gift-box ul {
    list-style: none;
    color: #888;
    font-size: 0.8rem;
}

.gift-box ul li {
    margin-bottom: 5px;
}

.price-card.featured {
    background: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--gold);
}

.featured .card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.featured h3 {
    color: var(--gold);
}

.featured .price-val {
    color: var(--white);
}

.featured .card-body {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured .list-check li {
    color: rgba(255, 255, 255, 0.8);
}

.featured .gift-box {
    background: rgba(255, 255, 255, 0.1);
}

.featured .gift-box strong {
    color: var(--gold);
}

.featured .gift-box ul {
    color: rgba(255, 255, 255, 0.5);
}

.price-card .card-footer {
    padding: 0 30px 40px;
}

.price-card .btn-gold {
    width: 100%;
    border-radius: 12px;
}

/* FAQ List */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.faq-item h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--burgundy);
}

.faq-item p {
    font-size: 0.9rem;
    color: #888;
}

/* Final CTA */
.cta-final {
    background: var(--burgundy);
    text-align: center;
    color: var(--white);
    padding: 120px 0;
}

.cta-final h2 {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 45px;
}

.btn-wa-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--burgundy);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    text-decoration: none;
}

.btn-wa-final:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 60px 0;
    background: var(--burgundy-deep);
    color: #555;
}

.footer-logo {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 4px;
    opacity: 0.5;
}

.footer-links {
    font-size: 0.75rem;
    margin-top: 20px;
}

.footer-links span {
    margin: 0 15px;
}

/* Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal-hidden.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {

    .pricing-grid,
    .pillars-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .hero-image img {
        max-width: 100px;
    }

    .hero {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 60px;
        background: linear-gradient(rgba(74, 19, 19, 0.85), rgba(74, 19, 19, 0.85)), url('bg_hero.png');
        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .price-card.featured {
        transform: none;
        margin: 40px 0;
    }
}