:root {
    /* The "Sovereign Tier" Palette - Deep, Rich, Immersive */
    --black: #050505;
    --obsidian: #0a0a0c;
    --navy-deep: #0f172a;
    --slate-luxe: #1e293b;
    
    /* Accents - High Contrast Glow */
    --emerald-glow: #10b981;
    --gold-glow: #fbbf24;
    --gold-muted: #b45309;
    --platinum: #e2e8f0;
    
    /* Surface & Glass */
    --glass: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: #111827;
    
    /* Shadows */
    --glow-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
    --gold-shadow: 0 0 40px rgba(251, 191, 36, 0.1);
    
    /* Radii */
    --radius-luxe: 32px;
}

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

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

/* --- DYNAMIC BACKGROUND --- */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: morph 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--navy-deep);
    top: -10%;
    right: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #064e3b;
    bottom: -10%;
    left: -5%;
    animation-delay: -5s;
}

@keyframes morph {
    0% { transform: scale(1) translate(0, 0); border-radius: 40% 60% 60% 40% / 40% 30% 70% 60%; }
    100% { transform: scale(1.2) translate(100px, 50px); border-radius: 60% 40% 30% 70% / 60% 70% 30% 40%; }
}

/* --- NAVIGATION --- */
#navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.5s;
}

#navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    background: linear-gradient(to right, #fff, var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--emerald-glow);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.portal-btn {
    background: linear-gradient(to right, var(--emerald-glow), #059669);
    color: var(--black);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.4s;
}

.portal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15vh;
    padding-bottom: 10vh;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--emerald-glow);
    margin-bottom: 2rem;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.95;
    font-weight: 700;
    margin-bottom: 3rem;
}

.hero-title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-luxe {
    padding: 1.5rem 3.5rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.5s;
    font-size: 0.9rem;
}

.btn-primary {
    background: #fff;
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    background: var(--gold-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--emerald-glow);
    background: rgba(16, 185, 129, 0.05);
}

/* --- BENTO SECTION --- */
.bento-section {
    padding: 10rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3.5rem;
    margin-top: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
}

.bento-card {
    background: var(--obsidian);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-luxe);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-card:hover {
    border-color: rgba(255,255,255,0.3);
    background: var(--slate-luxe);
    transform: scale(0.98);
}

.card-icon {
    width: 50px;
    height: 50px;
    color: var(--emerald-glow);
    margin-bottom: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    font-weight: 300;
}

.card-large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--navy-deep), var(--black));
}

.card-img-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transition: 1s;
}

.bento-card:hover .card-img-bg {
    transform: scale(1.1);
    opacity: 0.5;
}

/* --- APOTHECARY --- */
.apothecary {
    padding: 10rem 0;
}

.scroll-ticker {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 6rem;
    opacity: 0.1;
    font-size: 8rem;
    font-weight: 800;
    text-transform: uppercase;
    pointer-events: none;
}

.ticker-text {
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.p-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-luxe);
    padding: 2.5rem;
    transition: 0.4s;
    text-align: center;
}

.p-card:hover {
    background: var(--glass);
    border-color: var(--emerald-glow);
    box-shadow: var(--glow-shadow);
}

.p-visual {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.p-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.p-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-glow);
}

.add-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.add-btn:hover {
    background: #fff;
    color: var(--black);
    transform: rotate(90deg);
}

/* --- PRICING --- */
.membership {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, var(--navy-deep));
}

.plans-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.plan-card {
    background: var(--obsidian);
    padding: 4rem 3rem;
    border-radius: var(--radius-luxe);
    border: 1px solid var(--glass-border);
    position: relative;
    transition: 0.5s;
}

.plan-card.featured {
    padding: 5rem 3.5rem;
    border-color: var(--gold-glow);
    background: linear-gradient(to bottom, #111, #000);
    box-shadow: var(--gold-shadow);
    z-index: 2;
}

.plan-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-glow);
    text-transform: uppercase;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.plan-price {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.4;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.plan-features i {
    color: var(--emerald-glow);
}

.plan-cta {
    width: 100%;
    padding: 1.25rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.plan-card.featured .plan-cta {
    background: var(--gold-glow);
    color: var(--black);
    border: none;
}

.plan-cta:hover {
    background: #fff;
    color: var(--black);
}

/* --- FOOTER --- */
.footer {
    padding: 10rem 0 5rem;
    border-top: 1px solid var(--glass-border);
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.f-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: var(--gold-glow);
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.f-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: 0.3s;
}

.f-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.contact-box {
    background: var(--navy-deep);
    padding: 3rem;
    border-radius: var(--radius-luxe);
}

.contact-box h3 {
    margin-bottom: 2rem;
}

/* --- TRUST STRIP --- */
.trust-strip {
    background: var(--navy-deep);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.25rem 0;
    overflow: hidden;
}

.trust-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.trust-items {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: trust-scroll 50s linear infinite;
    padding-right: 2rem;
}

.trust-items span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-items span i {
    width: 14px;
    height: 14px;
    color: var(--emerald-glow);
    flex-shrink: 0;
}

.trust-divider {
    color: rgba(255,255,255,0.15) !important;
    font-size: 1rem !important;
    letter-spacing: 0 !important;
}

@keyframes trust-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 10rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-title {
    text-align: left !important;
    font-size: 3rem !important;
    margin-top: 1.5rem;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(to right, var(--gold-glow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    margin-top: 2rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-glow);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.credential-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--obsidian);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: 0.3s;
}

.credential-card:hover {
    border-color: var(--emerald-glow);
    background: var(--glass);
}

.cred-icon-wrap {
    width: 46px;
    height: 46px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cred-icon-wrap i {
    width: 20px;
    height: 20px;
    color: var(--emerald-glow);
}

.cred-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.cred-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.testimonial-card {
    background: var(--obsidian);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-luxe);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: 0.4s;
}

.testimonial-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonial-featured {
    border-color: var(--gold-glow);
    background: linear-gradient(135deg, #111, #0a0a0c);
    box-shadow: var(--gold-shadow);
    transform: translateY(-12px);
}

.testimonial-featured:hover {
    transform: translateY(-18px);
}

.stars {
    color: var(--gold-glow);
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald-glow), var(--navy-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

/* --- FAQ --- */
.faq-section {
    padding: 10rem 0;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--obsidian);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--emerald-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--emerald-glow);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--emerald-glow);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 2rem;
}

.faq-answer p {
    padding: 0 2.5rem;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
}

/* --- CONTACT --- */
.contact-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, var(--navy-deep), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--obsidian);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    transition: 0.3s;
}

.contact-info-card:hover {
    border-color: var(--emerald-glow);
}

.contact-icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrap i {
    width: 18px;
    height: 18px;
    color: var(--emerald-glow);
}

.contact-info-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.4rem;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s;
}

.contact-info-card a:hover {
    color: var(--emerald-glow);
}

.whatsapp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 1.25rem 2rem;
    border-radius: 100px;
    margin-top: 0.5rem;
    transition: 0.3s;
}

.whatsapp-cta-btn:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-btn i {
    width: 20px;
    height: 20px;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 420px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.65);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: 0.2s;
}

.mobile-nav-links a:hover {
    color: var(--emerald-glow);
}

.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    transition: 0.3s;
}

.mobile-whatsapp-btn:hover {
    background: #1ebe5a;
}

.mobile-whatsapp-btn i {
    width: 20px;
    height: 20px;
}

body.nav-open {
    overflow: hidden;
}

/* --- FLOATING WHATSAPP --- */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 997;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    opacity: 0;
    transform: scale(0.7) translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s;
    pointer-events: none;
}

.float-whatsapp.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.float-whatsapp:hover {
    transform: scale(1.12) translateY(0);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

.float-whatsapp i {
    width: 26px;
    height: 26px;
}

.float-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .plans-wrapper { grid-template-columns: 1fr; }
    .hero-title { font-size: 4rem; }
    .f-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-featured { transform: none; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .portal-btn { display: none; }
    .hamburger { display: flex; }
    .hero-btns { flex-direction: column; align-items: center; }
    .about-stats { gap: 1.5rem; flex-wrap: wrap; }
    .about-title { font-size: 2.2rem !important; }
    .faq-question { padding: 1.5rem; }
    .faq-answer p { padding: 0 1.5rem; }
    .float-whatsapp { bottom: 1.25rem; right: 1.25rem; }
}
