@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Colors */
    --bg-main: #001511;
    --bg-sec: #00231e;
    --card-green: #0a332a;
    --card-active: linear-gradient(135deg, #145c35, #0b2d1c);
    --primary-gold: #d4af52;
    --primary-green: #166537;
    --text-white: #ffffff;
    --text-sec: rgba(255, 255, 255, .72);
    --glass: rgba(255, 255, 255, .08);
    --overlay: rgba(0, 0, 0, .5);
    --gold-hover: #e5c36d;
    --card-green-light: #0a4d3c;

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Layout */
    --radius-30: 20px;
    --radius-40: 24px;
    --radius-60: 40px;
    --transition: .4s ease;
    --smoke-opacity: 0.3;
    --primary-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-main);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 18px;
    position: relative;
}

body::before,
body::after {
    content: '';
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 101, 55, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

body::before { top: 10%; left: -5%; }
body::after { bottom: 10%; right: -5%; animation-delay: -7s; }

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

.section-header {
    margin-bottom: 80px;
    position: relative;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.1;
    margin-top: 10px;
}

.label-gold {
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: block;
}

/* Titles Style */
/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Staggered Delay */
.bento-grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.bento-grid .reveal:nth-child(3) { transition-delay: 0.4s; }

.medicinas-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.medicinas-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.medicinas-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.medicinas-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.medicinas-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Organic Dividers */
.divider-brush {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 5;
    margin-top: -50px;
    margin-bottom: -50px;
}

.divider-top {
    background-image: url('img/divider-top.svg'); /* I will generate this or use a CSS mask */
}

.divider-bottom {
    background-image: url('img/divider-bottom.svg');
}

h1,
h2,
h3,
h4,
.section-title,
.card-quote {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-white);
}

p,
span,
a,
li {
    font-family: var(--font-sans);
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* --- Topbar --- */
.topbar {
    background: #000;
    padding: 10px 0;
    text-align: right;
    font-size: 12px;
}

.btn-buy-now {
    background: var(--primary-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

/* --- Navigation --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    position: fixed;
    padding: 15px 0;
    background: rgba(0, 20, 15, 0.95);
    backdrop-filter: blur(20px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    flex: 1;
}

@media (max-width: 768px) {
    .nav-left {
        width: 100%;
        justify-content: space-between;
    }
}

.nav-actions {
    flex: 1;
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
}

.logo img {
    height: clamp(60px, 8vw, 90px);
    width: auto;
    transition: 0.3s;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.navbar.scrolled .logo img {
    height: clamp(45px, 6vw, 65px);
}

.nav-pill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 12px 40px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 0;
}

.btn-menu {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.btn-menu:active {
    transform: scale(0.9);
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

/* Active and Hover states for mobile menu */
@media (max-width: 768px) {
    .nav-menu li {
        width: 100%;
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 25px 40px;
        border-radius: 0;
        transition: all 0.3s ease;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: left;
    }

    .nav-menu li:first-child a {
        background: linear-gradient(135deg, var(--primary-gold) 0%, #e5c36d 100%);
        color: #000;
        opacity: 1;
        font-weight: 700;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 55px;
        color: var(--primary-gold);
    }
    
    .nav-menu li:first-child a:hover {
        background: var(--gold-hover);
        color: #000;
        padding-left: 40px;
    }
}

.btn-cta-gold {
    background: var(--primary-gold);
    color: #1a1a1a;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-cta-gold:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--gold-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 82, 0.4);
}

/* --- Hero --- */
.hero {
    min-height: 110vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 250px;
    background: #000;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            var(--bg-main) 85%),
        url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-inner {
    text-align: center;
    z-index: 10;
    position: relative;
    width: 100%;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1;
    margin-bottom: 20px;
    margin: 0 auto;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-brush {
    width: clamp(250px, 30vw, 450px);
    height: 30px;
    background: url('img/pincel.png') no-repeat center;
    background-size: contain;
    margin: -10px auto 40px auto;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: var(--text-sec);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 25px 8px 8px;
    border-radius: 100px;
}

.play-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.btn-video:hover .play-circle {
    transform: scale(1.1);
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
}

.hero-phone:hover {
    transform: translateX(5px);
}

.phone-icon-round {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(22, 101, 55, 0.4);
}

.btn-share-circle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.btn-share-circle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Tooltip Styling */
.btn-share-circle::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-gold);
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(212, 175, 82, 0.3);
    pointer-events: none;
    z-index: 100;
}

.btn-share-circle::before {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 8px solid transparent;
    border-top-color: var(--primary-gold);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
}

.btn-share-circle:hover::after,
.btn-share-circle:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.share-icon-round {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    transition: transform 0.3s ease;
}

.btn-share-circle:hover .share-icon-round {
    transform: rotate(15deg) scale(1.1);
}

/* --- About / Ritual --- */
.ritual-section {
    padding: 180px 0 120px;
    margin-top: -120px;
    position: relative;
    z-index: 5;
    background: var(--bg-main);
}

.ritual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.ritual-img-box {
    position: relative;
}

.main-ritual-img {
    width: 100%;
    border-radius: var(--radius-40);
}

.floating-card-green {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-green);
    padding: 40px;
    border-radius: var(--radius-30);
    color: var(--primary-gold);
    text-align: center;
}

.floating-card-green strong {
    font-size: 3rem;
    display: block;
    line-height: 1;
    font-family: var(--font-serif);
}

.floating-card-green span {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

.ritual-text h2 {
    font-size: 5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* --- Bento --- */
.bento-section {
    padding: 120px 0;
    background: var(--bg-main);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-card {
    background: var(--card-green);
    padding: 60px 45px;
    border-radius: var(--radius-40);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bento-card.active {
    background: var(--card-active);
}

.marquee-section {
    padding: 120px 0;
    overflow: visible;
}

.medicinas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}

.product-card {
    background: var(--bg-sec);
    border-radius: var(--radius-40);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}


.product-info {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-info h3 {
    font-size: 1.5rem; /* Reduced from 1.8rem */
    color: var(--primary-gold);
    margin: 0;
    line-height: 1.4;
}

.product-price {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-left: 8px;
    white-space: nowrap;
}

.product-info p {
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.6;
}

.product-btn {
    margin-top: auto;
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 15px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-btn:hover {
    background: var(--primary-gold);
    color: #000;
}

/* --- Smoke Particle Effect (Enhanced) --- */
.smoke-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.smoke-particle {
    position: absolute;
    bottom: 60%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(200, 200, 200, 0.2) 40%, transparent 80%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    animation: smokeRise 4.5s infinite ease-out;
}

.smoke-particle:nth-child(1) { animation-delay: 0s; width: 140px; left: 42%; }
.smoke-particle:nth-child(2) { animation-delay: 0.5s; width: 180px; left: 55%; }
.smoke-particle:nth-child(3) { animation-delay: 1.0s; width: 130px; left: 47%; }
.smoke-particle:nth-child(4) { animation-delay: 1.5s; width: 190px; left: 58%; }
.smoke-particle:nth-child(5) { animation-delay: 2.0s; width: 150px; left: 40%; }
.smoke-particle:nth-child(6) { animation-delay: 2.5s; width: 160px; left: 50%; }
.smoke-particle:nth-child(7) { animation-delay: 3.0s; width: 140px; left: 44%; }
.smoke-particle:nth-child(8) { animation-delay: 3.5s; width: 170px; left: 53%; }

@keyframes smokeRise {
    0% {
        transform: translate(-50%, 0) scale(0.3) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    40% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-180%, -450px) scale(6) rotate(240deg);
        opacity: 0;
    }
}

.product-img {
    height: 400px;
    background: #00251e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-height: 80%;
}

.product-info {
    padding: 40px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* --- Testimonial Card Section --- */
.testimonial-section {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.testimonial-card {
    background: var(--bg-sec);
    border-radius: var(--radius-40);
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #f1c40f;
    display: flex;
    gap: 4px;
}

.rating-text {
    font-weight: 600;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 60%;
    color: var(--text-white);
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    padding: 3px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.client-info span {
    opacity: 0.6;
    font-size: 0.9rem;
}

.hero-testimonial {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card.hero-card {
    margin: 0;
    background: #0a332a;
    width: 100%;
    max-width: 1150px;
    border: none;
    padding: 60px 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-40);
    text-align: left;
    overflow: visible;
}

.smoke-effect {
    position: absolute;
    top: -80px;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 9;
    animation: smokeFloat 12s infinite ease-in-out;
}

@keyframes smokeFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50px, -30px) rotate(10deg) scale(1.8);
        opacity: 0.5;
    }
}

.plant-overlay {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 60%;
    max-width: 900px;
    pointer-events: none;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* Ground Shadow for Cauldron */
.plant-overlay::before {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
    z-index: 1;
    filter: blur(10px);
}

/* Mystical Glow from Inside */
.plant-overlay::after {
    content: '';
    position: absolute;
    bottom: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 82, 0.4) 0%, transparent 80%);
    z-index: 6;
    filter: blur(15px);
    animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.5); }
}

.plant-overlay img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    transform: rotate(0deg) scale(1.1);
    transition: transform 0.8s ease;
    z-index: 5;
    position: relative;
}

.hero-card:hover .plant-overlay img {
    transform: rotate(-3deg) scale(1.05);
}

.badge-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    z-index: 11;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.badge-float:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.badge-float i {
    width: 24px;
    height: 24px;
    background: var(--primary-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 0 10px rgba(212, 175, 82, 0.4);
}

.badge-1 {
    top: 45%;
    left: 45%;
}

.badge-2 {
    top: 35%;
    right: 5%;
}

.badge-3 {
    bottom: 20%;
    left: 55%;
}

/* --- FAQ --- */
.faq-section {
    padding: 120px 0;
    background: var(--bg-main);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-sec);
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-gold);
    color: #000;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 35px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
    opacity: 1;
}

/* --- Footer --- */
.footer {
    padding: 100px 0 0;
    background: #000b09;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 80px;
    align-items: flex-start;
}

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-sec);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-sec);
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-gold);
    width: 20px;
}

.copyright {
    background: var(--primary-gold);
    color: #111;
    padding: 20px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Responsive Design --- */
@media (max-width: 1440px) {
    body { font-size: 16px; }
    .container { max-width: 1100px; }
    .hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
    .hero-brush { width: 350px; }
    .hero-subtitle { max-width: 550px; }
    .hero-testimonial { margin-top: 50px; }
    .testimonial-card.hero-card { padding: 40px 60px; }
    .ritual-text h2 { font-size: 3.5rem; }
    .ritual-grid { gap: 60px; }
    .section-header h2 { font-size: 3rem; }
}

@media (max-width: 1200px) {
    .hero h1 { font-size: 4rem; }
    .footer-grid { gap: 40px; }
}

@media (max-width: 992px) {
    .ritual-grid { grid-template-columns: 1fr; gap: 50px; }
    .bento-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-col:first-child { grid-column: span 2; text-align: center; }
    .footer-col:first-child .footer-logo { margin: 0 auto 20px; }
    .footer-col:first-child p { margin: 0 auto; }
}

@media (max-width: 768px) {
    .btn-menu { display: block; }
    
    .nav-pill {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-sec);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        border-radius: 0;
        border: none;
        z-index: 1000;
    }

    .nav-pill.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .nav-actions { display: none; }
    .hero { padding-top: 120px; }
    .hero h1 { font-size: 3rem; }
    .hero-actions { flex-direction: column; gap: 15px; }
    
    /* Footer Mobile: Only Atendimento */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col:nth-child(1),
    .footer-col:nth-child(2) {
        display: none;
    }
    .footer-col:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact-item { justify-content: center; }

    /* Hide cauldron on mobile as requested */
    .plant-overlay {
        display: none !important;
    }
    .badge-float { display: none; }
    .testimonial-text { max-width: 100%; font-size: 1.1rem; }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0a332a;
    color: #d4af52;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background: #d4af52;
    color: #000;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 101, 55, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(22, 101, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 101, 55, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: #001511;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-sec);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.video-item {
    cursor: pointer;
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 82, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 82, 0.5);
    transition: all 0.3s ease;
}

.gallery-item:hover .play-btn-large {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-gold);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gallery-item.large, .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Social Shop Section */
.social-shop-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.social-shop-card {
    background: linear-gradient(135deg, var(--card-green) 0%, #000 100%);
    border: 1px solid rgba(212, 175, 82, 0.2);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.social-content {
    flex: 1;
}

.social-content h2 {
    font-size: 3rem;
    margin: 15px 0 25px;
}

.social-content p {
    font-size: 1.2rem;
    color: var(--text-sec);
    margin-bottom: 40px;
    max-width: 500px;
}

.social-btns {
    display: flex;
    gap: 20px;
}

.social-btns .btn-cta-gold {
    padding: 18px 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.social-btns .btn-outline {
    border: 1px solid rgba(212, 175, 82, 0.4);
    color: var(--primary-gold);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.social-btns .btn-outline:hover {
    background: rgba(212, 175, 82, 0.1);
    border-color: var(--primary-gold);
}

.social-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 60px;
    border-left: 1px solid rgba(212, 175, 82, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.feature-item i {
    color: var(--primary-gold);
    width: 24px;
    height: 24px;
}

@media (max-width: 1200px) {
    .social-shop-card {
        flex-direction: column;
        padding: 50px 30px;
        text-align: center;
    }
    .social-content p {
        margin: 0 auto 40px;
    }
    .social-btns {
        justify-content: center;
    }
    .social-features {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(212, 175, 82, 0.2);
        padding-top: 40px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .social-content h2 { font-size: 2.2rem; }
    .social-btns { flex-direction: column; width: 100%; }
    .social-features { flex-direction: column; align-items: center; }
}

/* Social Shop Section */
.social-shop-section {
    padding: 120px 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.social-shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 82, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.social-shop-card {
    background: linear-gradient(135deg, #0a332a 0%, #051a15 100%);
    border: 1px solid rgba(212, 175, 82, 0.3);
    border-radius: 40px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.social-content {
    flex: 1;
}

.social-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 15px 0 25px;
    color: #fff;
    letter-spacing: -1px;
}

.social-content p {
    font-size: 1.2rem;
    color: var(--text-sec);
    margin-bottom: 45px;
    max-width: 550px;
    line-height: 1.6;
}

.social-btns {
    display: flex;
    gap: 20px;
}

.social-btns .btn-cta-gold {
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.social-btns .btn-outline {
    border: 1px solid rgba(212, 175, 82, 0.5);
    color: var(--primary-gold);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.social-btns .btn-outline:hover {
    background: var(--primary-gold);
    color: #000 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 82, 0.2);
}

.social-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 60px;
    border-left: 1px solid rgba(212, 175, 82, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.1rem;
    color: #fff;
}

.feature-item i {
    color: var(--primary-gold);
    width: 28px;
    height: 28px;
}

@media (max-width: 1200px) {
    .social-shop-card {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }
    .social-content p {
        margin: 0 auto 45px;
    }
    .social-btns {
        justify-content: center;
    }
    .social-features {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(212, 175, 82, 0.2);
        padding-top: 50px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .social-content h2 { font-size: 2.2rem; }
    .social-btns { flex-direction: column; width: 100%; }
    .social-features { flex-direction: column; align-items: center; }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 15, 12, 0.95);
    backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    border: 1px solid rgba(212, 175, 82, 0.3);
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 82, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.1);
    background: #fff;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        border-radius: 20px;
    }
    .close-modal {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
