/* ==========================================================================
   STYLE SYSTEM - SPA DANI ALMEIDA (ESTÉTICA & BEM-ESTAR)
   Warm Blush Cream Base with Luxury Wine/Berry & Gold Accents
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
    /* Color Palette */
    --clr-primary: #9C4F62;          /* Luxury Wine / Berry Pink */
    --clr-primary-light: #B8677C;    /* Muted Rose */
    --clr-secondary: #D6B29C;        /* Creamy Champagne Gold */
    --clr-accent: #EBBCA2;           /* Soft Peach/Blush */
    
    /* Backgrounds */
    --clr-bg-main: #FAF6F5;          /* Off-white Blush Linen */
    --clr-bg-surface: #FFFFFF;       /* Pure white for cards in light mode */
    --clr-bg-surface-alt: #F2EAE7;   /* Slightly darker blush beige */
    
    /* Text Colors */
    --clr-text-main: #362226;        /* Deep Fig/Burgundy (high contrast) */
    --clr-text-muted: #735D62;       /* Slate Berry grey */
    --clr-text-white: #FFFFFF;
    
    /* Borders & Lines */
    --clr-border: #ECE3E1;           /* Light blush sand line */
    --clr-border-gold: #DFD3BF;      /* Soft gold outline */
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(156, 79, 98, 0.05);
    --shadow-medium: 0 10px 30px rgba(156, 79, 98, 0.08);
    --shadow-glass: 0 8px 32px rgba(156, 79, 98, 0.06);
    
    /* Layout & Spacing */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- DARK MODE OVERRIDES --- */
body.dark-mode {
    --clr-bg-main: #1D1113;          /* Deep Fig Charcoal */
    --clr-bg-surface: #27191C;       /* Dark Plum Carbon */
    --clr-bg-surface-alt: #221417;   /* Muted plum charcoal */
    
    --clr-text-main: #F2EAE7;        /* Warm off-white */
    --clr-text-muted: #AF9C9F;       /* Slate Rose grey */
    
    --clr-border: #362226;
    --clr-border-gold: #4C3237;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* --- CSS RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-smooth);
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

span.highlight {
    color: var(--clr-primary);
    position: relative;
    display: inline-block;
}

body.dark-mode span.highlight {
    color: var(--clr-secondary);
}

/* --- BUTTONS & CTAS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-text-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--clr-bg-surface);
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
}

.btn-secondary:hover {
    background-color: var(--clr-bg-surface-alt);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-gold {
    background-color: var(--clr-secondary);
    color: var(--clr-text-main);
    border: 1px solid var(--clr-border-gold);
}

body.dark-mode .btn-gold {
    color: var(--clr-bg-main);
}

.btn-gold:hover {
    background-color: #c9a38b;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

/* --- MAIN HEADER (Navbar) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background-color: rgba(250, 246, 245, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(214, 178, 156, 0.1);
}

body.dark-mode .main-header {
    background-color: rgba(29, 17, 19, 0.65);
}

.main-header.scrolled {
    padding: 12px 0;
    background-color: rgba(250, 246, 245, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-soft);
}

body.dark-mode .main-header.scrolled {
    background-color: rgba(29, 17, 19, 0.9);
}

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

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

.logo-symbol {
    color: var(--clr-primary);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .logo-symbol {
    color: var(--clr-secondary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Allura', cursive;
    font-weight: 400;
    font-size: 2.6rem; /* Ajustado para dar a proporção exata e elegante do logo original */
    color: #DFBA73; /* Dourado exato do logo */
    line-height: 0.95;
    text-transform: none;
    text-shadow: 1px 1px 2px rgba(17, 10, 12, 0.35); /* Sombra suave no modo claro */
}

body.dark-mode .logo-main {
    color: #DFBA73;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.75); /* Sombra macia no modo escuro */
}







.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-main); /* Escuro no modo claro */
    margin-top: 2px;
    font-weight: 600;
}





body.dark-mode .logo-sub {
    color: #FFFFFF; /* Branco puro no modo escuro */
}



















.nav-bar {
    display: flex;
    align-items: center;
}

.mobile-menu-socials {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.nav-link:hover {
    color: var(--clr-primary);
}

body.dark-mode .nav-link:hover {
    color: var(--clr-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Switcher */
.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-bg-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-main);
}

.theme-toggle-btn:hover {
    transform: scale(1.05);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sun-icon { display: none; }
body.dark-mode .moon-icon { display: none; }
body.dark-mode .sun-icon { display: block; }

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
    padding: 160px 0 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: var(--clr-bg-surface-alt);
    border: 1px solid var(--clr-border-gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 24px;
}

body.dark-mode .badge-rating {
    color: var(--clr-secondary);
}

.badge-rating .stars {
    color: var(--clr-secondary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--clr-text-main);
}

.hero-title span {
    color: var(--clr-primary);
}

body.dark-mode .hero-title span {
    color: var(--clr-secondary);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--clr-border);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-gold);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-medium);
    max-width: 320px;
    animation: floating 3.5s ease-in-out infinite;
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(156, 79, 98, 0.15);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.dark-mode .floating-icon {
    background-color: rgba(214, 178, 156, 0.15);
    color: var(--clr-secondary);
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

.floating-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.floating-info p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- COMMON SECTION STYLING --- */
.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--clr-bg-surface-alt);
}

.section-title-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--clr-primary);
    display: block;
    margin-bottom: 12px;
}

body.dark-mode .section-tag {
    color: var(--clr-secondary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--clr-text-main);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--clr-primary);
}

body.dark-mode .section-title span {
    color: var(--clr-secondary);
}

.section-desc {
    color: var(--clr-text-muted);
    font-size: 1rem;
}

/* --- SERVICES GRID (CSS Grid) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    width: 100%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--clr-primary-light);
}

body.dark-mode .service-card:hover {
    border-color: var(--clr-secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--clr-bg-main);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

body.dark-mode .service-icon {
    color: var(--clr-secondary);
}

.service-card:hover .service-icon {
    background-color: var(--clr-primary);
    color: white;
}

body.dark-mode .service-card:hover .service-icon {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--clr-text-main);
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--clr-primary);
    font-size: 0.9rem;
    margin-top: auto;
}

body.dark-mode .service-link {
    color: var(--clr-secondary);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* --- ABOUT / LAYOUT GRID --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-image {
    max-height: 520px;
    width: auto;
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--clr-border);
}

.about-stats {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--clr-primary);
    color: white;
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

body.dark-mode .about-stats {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-desc {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-tick {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(156, 79, 98, 0.15);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

body.dark-mode .feature-tick {
    background-color: rgba(214, 178, 156, 0.15);
    color: var(--clr-secondary);
}

.feature-tick svg {
    width: 14px;
    height: 14px;
}

.about-feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature-item p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--clr-accent);
    color: var(--clr-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

body.dark-mode .reviewer-avatar {
    background-color: rgba(214, 178, 156, 0.2);
    color: var(--clr-secondary);
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.reviewer-source {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.reviewer-source svg {
    width: 12px;
    height: 12px;
}

.rating-stars-card {
    color: var(--clr-secondary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    font-style: italic;
}

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

.faq-item {
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    color: var(--clr-text-main);
}

.faq-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--clr-bg-main);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

body.dark-mode .faq-icon-box {
    color: var(--clr-secondary);
}

.faq-icon-box svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    padding-bottom: 24px;
}

.faq-item.active {
    border-color: var(--clr-primary);
}

body.dark-mode .faq-item.active {
    border-color: var(--clr-secondary);
}

.faq-item.active .faq-icon-box {
    background-color: var(--clr-primary);
    color: white;
    transform: rotate(180deg);
}

body.dark-mode .faq-item.active .faq-icon-box {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-main);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* --- FOOTER & CONTACTS --- */
.main-footer {
    background-color: #211416;
    color: #FAF6F5;
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-desc {
    color: #C0A9AD;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-col h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 24px;
}

.footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #C0A9AD;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #C0A9AD;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--clr-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #362226;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8C7276;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--clr-secondary);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .instagram-header-link,
    .whatsapp-header-link {
        display: none !important;
    }

    .logo-sig-img {
        height: 34px !important;
    }
    
    .nav-bar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--clr-bg-surface);
        border-left: 1px solid var(--clr-border);
        padding: 80px 30px 40px 30px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }
    
    .nav-bar.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    /* Mobile Social Links inside Hamburger Menu */
    .mobile-menu-socials {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid var(--clr-border);
    }

    .instagram-mobile-link,
    .whatsapp-mobile-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        padding: 12px;
        border-radius: 30px;
        transition: var(--transition-smooth);
    }

    .instagram-mobile-link {
        color: #E1306C;
        background: rgba(225, 48, 108, 0.05);
        border: 1.5px solid rgba(225, 48, 108, 0.2);
    }

    .whatsapp-mobile-link {
        color: #25D366;
        background: rgba(37, 211, 102, 0.05);
        border: 1.5px solid rgba(37, 211, 102, 0.2);
    }

    .instagram-mobile-link:hover, .whatsapp-mobile-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .instagram-mobile-link svg, .whatsapp-mobile-link svg {
        width: 20px;
        height: 20px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .btn-desktop {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- CRYOTECAR HIGHLIGHT GRID --- */
.cryotecar-highlight {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(156, 79, 98, 0.03) 0%, rgba(214, 178, 156, 0.09) 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--clr-border-gold);
    text-align: left;
    box-shadow: var(--shadow-medium);
    align-items: center;
    transition: var(--transition-smooth);
}

body.dark-mode .cryotecar-highlight {
    background: linear-gradient(135deg, rgba(156, 79, 98, 0.08) 0%, rgba(25, 34, 37, 0.6) 100%);
    border-color: rgba(214, 178, 156, 0.2);
}

.cryotecar-image-wrapper {
    position: relative;
}

.cryotecar-image {
    width: 100%;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--clr-border-gold);
    box-shadow: var(--shadow-medium);
}

@media (max-width: 1024px) {
    .cryotecar-highlight {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
        text-align: center;
    }
    .cryotecar-highlight ul {
        display: inline-block;
        text-align: left;
    }
}

/* --- GALLERY SECTION (3 Columns Symmetrical Grid) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-card {
    background-color: var(--clr-bg-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-border-gold);
    box-shadow: var(--shadow-medium);
}

.gallery-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--clr-border);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--clr-text-main);
}

.gallery-card-info p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ABOUT PORTRAIT WRAPPER --- */
.about-image-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

/* --- PREMIUM ABOUT FEATURE CARD STYLES --- */
.about-feature-item {
    display: flex;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(214, 178, 156, 0.03);
    border-left: 3px solid var(--clr-primary);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.about-feature-item:hover {
    background: rgba(214, 178, 156, 0.08);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-feature-item .feature-tick {
    color: var(--clr-primary);
    background-color: rgba(214, 178, 156, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.about-feature-item .feature-tick svg {
    width: 16px;
    height: 16px;
}

/* --- SHIMMER GLOW BULLET POINTS --- */
@keyframes shimmer-glow {
    0%, 100% {
        text-shadow: 0 0 2px rgba(214, 178, 156, 0.5), 0 0 4px rgba(214, 178, 156, 0.2);
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        text-shadow: 0 0 8px rgba(214, 178, 156, 1), 0 0 16px rgba(214, 178, 156, 0.5);
        transform: scale(1.15);
        opacity: 1;
    }
}

.service-list li span, .cryotecar-highlight ul li span {
    color: var(--clr-primary) !important;
    font-weight: bold;
    display: inline-block;
    animation: shimmer-glow 3s infinite ease-in-out;
}

/* --- LIGHTBOX MODAL STYLES --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 10, 12, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoom-in 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes zoom-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(214, 178, 156, 0.2);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--clr-text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 45px;
    font-weight: 200;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2010;
}

.lightbox-close:hover {
    color: var(--clr-border-gold);
    transform: scale(1.1);
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-slider-container {
    position: relative;
    width: 100%;
    margin: 40px auto 0 auto;
    padding: 0 60px; /* Space on left/right for absolute buttons */
    box-sizing: border-box;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.testimonials-track .testimonial-card {
    min-width: calc((100% - 60px) / 3); /* 3 cards visible */
    width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    flex-shrink: 0;
    box-sizing: border-box;
    
    /* Zero Hora style modifications */
    background-color: var(--clr-bg-surface);
    border: 1px solid rgba(214, 178, 156, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 380px; /* Tall square aspect ratio */
}

@media (max-width: 1024px) {
    .testimonials-track .testimonial-card {
        min-width: calc((100% - 30px) / 2); /* 2 cards visible */
        width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-track .testimonial-card {
        min-width: 100%; /* 1 card visible */
        width: 100%;
        max-width: 100%;
    }
    .testimonials-slider-container {
        padding: 0 45px; /* Slightly less padding on mobile */
    }
}

.testimonial-stars {
    color: var(--clr-secondary);
    font-size: 1.25rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--clr-text-muted);
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 auto 0; /* Push divider and profile to the bottom */
}

.testimonial-divider {
    height: 1px;
    background-color: rgba(214, 178, 156, 0.15);
    margin: 25px 0 20px 0;
    width: 100%;
}

.testimonials-track .reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.testimonials-track .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(214, 178, 156, 0.15);
    color: var(--clr-secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.testimonials-track .reviewer-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin: 0 0 3px 0;
}

.testimonials-track .reviewer-source {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    display: block;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-bg-surface);
    border: 1px solid var(--clr-border-gold);
    color: var(--clr-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    z-index: 10;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

body.dark-mode .slider-btn {
    background: var(--clr-bg-surface-alt);
    color: var(--clr-secondary);
}

.slider-btn:hover {
    background: var(--clr-primary);
    color: white;
    transform: scale(1.05) translateY(-50%);
}

body.dark-mode .slider-btn:hover {
    background: var(--clr-secondary);
    color: var(--clr-bg-main);
}

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



/* --- INSTAGRAM & WHATSAPP HEADER LINKS --- */
.instagram-header-link {
    color: #E1306C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    background: rgba(225, 48, 108, 0.05);
    border: 1.5px solid rgba(225, 48, 108, 0.3);
    flex-shrink: 0;
}

.instagram-header-link:hover {
    color: #E1306C;
    background: rgba(225, 48, 108, 0.15);
    border-color: #E1306C;
    transform: scale(1.05);
}

.whatsapp-header-link {
    color: #25D366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    background: rgba(37, 211, 102, 0.05);
    border: 1.5px solid rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
}

.whatsapp-header-link:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
    transform: scale(1.05);
}

.instagram-icon, .whatsapp-icon {
    width: 20px;
    height: 20px;
}


.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    color: var(--clr-primary-light);
    transform: translateX(3px);
}

body.dark-mode .footer-social-link {
    color: var(--clr-secondary);
}

body.dark-mode .footer-social-link:hover {
    color: var(--clr-secondary-light);
}

/* --- INLINE SVG & IMAGE LOGO SYSTEM --- */
.logo-sig-svg, .logo-sig-img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}

.main-footer .logo-sig-svg, .main-footer .logo-sig-img {
    height: 48px;
}

.logo-sig-svg .sig-path {
    fill: url(#goldGrad);
    transition: fill 0.3s ease;
}

.logo-sig-svg .sig-text {
    fill: #E5D5CD;
    transition: fill 0.3s ease;
}

/* Light mode specific adjustment for contrast */
body:not(.dark-mode) .logo-sig-svg .sig-path {
    fill: url(#burgundyGrad);
}

body:not(.dark-mode) .logo-sig-svg .sig-text {
    fill: #735D62;
}

body:not(.dark-mode) .logo-sig-img {
    filter: invert(0.8) sepia(0.2) saturate(2) hue-rotate(310deg) brightness(0.4) drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.15));
}
