/* ==========================================================================
   SR LASH - STUDIO DE BELEZA
   Estilo Principal (ciliosrecreio.com.br)
   ========================================================================== */

/* ==========================================
   CONSTRUCTION TICKER
========================================== */
.construction-ticker {
    background-color: var(--color-accent);
    color: var(--color-bg-primary);
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 1001;
}

.ticker-text-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: constructionMarquee 40s linear infinite;
}

.ticker-text-wrapper span {
    display: inline-block;
    padding-right: 10px;
}

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

/* ==========================================
   HEADER & NAVIGATION
========================================== */

/* --- Variáveis do Sistema de Design --- */
:root {
    /* Paleta de Cores */
    --color-bg-primary: #FAF7F2;      /* Off-white quente e acolhedor */
    --color-bg-secondary: #F3ECE0;    /* Bege suave para seções alternadas */
    --color-accent: #C5A880;          /* Ouro médio / Dourado elegante */
    --color-accent-light: #DFCDA6;    /* Dourado claro para hovers/detalhes */
    --color-accent-dark: #A98A60;     /* Dourado escuro para contraste */
    --color-text-main: #3A2A21;       /* Marrom café profundo (substituto do preto) */
    --color-text-muted: #6E5C53;     /* Marrom médio para textos secundários */
    --color-text-light: #FAF7F2;     /* Texto claro */
    --color-dark-banner: #221610;     /* Marrom chocolate escuro para rodapé/detalhes */
    --color-white: #FFFFFF;
    
    /* Sombras e Efeitos */
    --shadow-sm: 0 4px 12px rgba(58, 42, 33, 0.05);
    --shadow-md: 0 8px 24px rgba(58, 42, 33, 0.08);
    --shadow-lg: 0 16px 40px rgba(58, 42, 33, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    /* Fontes */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;
    
    /* Layout */
    --header-height: 130px; /* Aumentado para acomodar a logo gigante */
    --container-width: 1200px;
}

/* --- Banner Em Construção Removido --- */

/* --- Resets & Configurações Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* --- Barra de Rolagem Personalizada --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-dark);
}

/* --- Elementos de Layout --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* --- Tipografia Fina --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.2;
}

/* Seções e Títulos */
.section-tag {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-dark);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0 auto 24px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 60px auto;
    font-weight: 300;
}

/* --- Botões Premium --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-30deg);
    transition: 0.75s;
    opacity: 0;
}

.btn-primary:hover::after {
    left: 120%;
    opacity: 1;
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* --- Header / Navbar --- */
.main-header {
    height: var(--header-height);
    background-color: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
    background-color: rgba(250, 247, 242, 0.95);
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 110px; /* Quase o dobro do tamanho original (65px -> 110px) */
    object-fit: contain;
    mix-blend-mode: multiply; /* Remove perfeitamente o fundo branco da logo nova */
    transition: height 0.3s ease;
}

.main-header.scrolled .logo-img {
    height: 70px; /* Diminui suavemente ao rolar a página */
}

.logo-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent-dark);
    margin-top: 3px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-dark);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-main);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

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

/* Hamburguer Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-text-light);
    background-color: var(--color-dark-banner);
    overflow: hidden;
}

/* New Infinite Ticker */
.hero-services-ticker {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 50%; /* Ocupa apenas a metade esquerda no desktop */
    overflow: hidden;
    z-index: 10;
    padding-left: 24px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 35s linear infinite;
}

.ticker-items {
    display: flex;
    gap: 15px;
    padding-right: 15px; /* Importante para a rolagem infinita ser perfeita */
}

.ticker-items img {
    width: 140px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border: 1px solid rgba(197, 168, 128, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ticker-items img:hover {
    transform: scale(1.05);
    border-color: rgba(197, 168, 128, 0.8);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 15s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }

@keyframes slideFade {
    0% { opacity: 0; transform: scale(1); }
    15% { opacity: 1; }
    33% { opacity: 1; }
    48% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 50%;
    max-width: 540px;
    padding-right: 40px; /* Respiro antes de chegar na foto */
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%; /* Estendido mais para a esquerda para a transição suave */
    height: 100%;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRightFade 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mostra a foto inteira (cabeça e mãos) */
    object-position: right bottom; /* Alinha a base da foto para a mão aparecer */
    transform: scale(1.02);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1);
}

.hero-image-overlay {
    display: block; /* Reativado para fazer o degradê perfeito */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--color-dark-banner) 0%, var(--color-dark-banner) 30%, transparent 80%);
    pointer-events: none;
    z-index: 10;
}

@keyframes fadeInRightFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-tag {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-light);
    display: inline-block;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpFade 1s forwards 0.2s;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(4.5rem, 8vw, 7.5rem); /* Aumentado pois fontes script são menores */
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #DFCDA6 50%, #C5A880 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUpFade 1s forwards 0.4s;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(250, 247, 242, 0.85);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUpFade 1s forwards 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUpFade 1s forwards 0.8s;
}

/* Custom Scroll Mouse */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 25%; /* Centralizado na metade esquerda */
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.mouse-scroll {
    width: 24px;
    height: 38px;
    border: 1px solid var(--color-accent-light);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-accent-light);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.6s infinite;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-light);
}

@keyframes wheelScroll {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

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

/* --- Pillars / Core Values --- */
.pillars-section {
    background-color: var(--color-bg-primary);
    padding: 80px 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-item {
    background-color: var(--color-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 168, 128, 0.1);
    transition: var(--transition-smooth);
}

.pillar-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 168, 128, 0.3);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.12);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.pillar-item:hover .pillar-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.pillar-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.pillar-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* --- Services Section --- */
.services-section {
    background-color: var(--color-bg-secondary);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Ajuste no layout para alinhar os cards uniformemente */
@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .service-card {
        grid-column: span 2;
    }
}

.service-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.3);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image {
    transform: scale(1.08);
}

.service-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-dark-banner);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-accent-dark);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.service-info h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.service-features li i {
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* --- About Us Section --- */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-large {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img-large img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 220px;
}

.stats-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stats-badge .number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stats-badge .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.3;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-weight: 300;
}

.about-highlights {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.highlight-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* --- Gallery Section --- */
.gallery-section {
    background-color: var(--color-bg-secondary);
    padding: 100px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-white);
    color: var(--color-text-muted);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(34, 22, 16, 0.2), rgba(34, 22, 16, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 1.6rem;
    margin-bottom: 8px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    color: var(--color-accent-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(34, 22, 16, 0.95);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s;
    object-fit: contain;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-accent);
}

.lightbox-caption {
    margin: 20px auto;
    display: block;
    width: 80%;
    text-align: center;
    color: var(--color-bg-primary);
    font-family: var(--font-serif);
    font-size: 1.8rem;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    background-color: var(--color-white);
    padding: 40px 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 168, 128, 0.08);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial-rating {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-text-main);
    margin-bottom: 24px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.user-avatar {
    font-size: 2.2rem;
    color: var(--color-accent-dark);
}

.user-info {
    text-align: left;
}

.user-info h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 24px;
    background-color: var(--color-accent);
    border-radius: 4px;
}

/* --- FAQ Accordion --- */
.faq-section {
    background-color: var(--color-bg-secondary);
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 168, 128, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-main);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-accent-dark);
}

.faq-question i {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 24px;
    border-top: 1px solid transparent;
}

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

/* Accordion Active States */
.faq-item.active .faq-question {
    color: var(--color-accent-dark);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    border-top-color: rgba(197, 168, 128, 0.1);
}

/* --- Contact & Location Section --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-lead {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 168, 128, 0.1);
    border-radius: 12px;
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-list h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-list p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
}

.contact-list p a:hover {
    color: var(--color-accent-dark);
}

.social-links-wrapper h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.contact-map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

/* Custom Sepia/Warm filter for Google Map to match aesthetic */
.map-container iframe {
    filter: sepia(30%) contrast(90%) hue-rotate(340deg) saturate(90%);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-dark-banner);
    color: rgba(250, 247, 242, 0.6);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

.footer-brand h3 {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-accent);
}

.footer-links h4, .footer-services-list h4 {
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links ul, .footer-services-list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-services-list a {
    font-size: 0.9rem;
    color: rgba(250, 247, 242, 0.75);
}

.footer-links a:hover, .footer-services-list a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

.developer-credit {
    font-style: italic;
    color: rgba(250, 247, 242, 0.4);
}

/* --- Floating WhatsApp Icon --- */
.whatsapp-floating {
    position: fixed;
    bottom: 105px; /* Subido para dar espaço ao Instagram */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-floating::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    z-index: -1;
    animation: pulseWave 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Tooltip on WhatsApp button */
.whatsapp-floating .tooltip-text {
    visibility: hidden;
    width: 110px;
    background-color: var(--color-dark-banner);
    color: var(--color-white);
    text-align: center;
    border-radius: 6px;
    padding: 6px 0;
    position: absolute;
    z-index: 1;
    right: 75px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-sans);
}

.whatsapp-floating:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Floating Instagram Button */
.instagram-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.instagram-floating::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    opacity: 0.4;
    z-index: -1;
    animation: pulseWave 2s infinite;
}

.instagram-floating:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(214, 36, 159, 0.5);
}

.instagram-floating .tooltip-text {
    visibility: hidden;
    width: 110px;
    background-color: var(--color-dark-banner);
    color: var(--color-white);
    text-align: center;
    border-radius: 6px;
    padding: 6px 0;
    position: absolute;
    z-index: 1;
    right: 75px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-sans);
}

.instagram-floating:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@keyframes pulseWave {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- Scroll-triggered Animations Class --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- Instagram Feed Carousel --- */
.insta-carousel-section {
    padding: 80px 0;
    background-color: var(--color-bg-primary);
}

.insta-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.insta-carousel {
    display: flex;
    height: 480px;
    position: relative;
}

.insta-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.insta-slide.active {
    opacity: 1;
    visibility: visible;
}

.insta-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(34, 22, 16, 0.9));
    color: var(--color-white);
}

.insta-slide-info .likes {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.insta-slide-info p {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
}

.insta-prev, .insta-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(5px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-main);
    font-size: 1.2rem;
    transition: var(--transition-fast);
    z-index: 10;
}

.insta-prev:hover, .insta-next:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.insta-prev {
    left: 20px;
}

.insta-next {
    right: 20px;
}

/* --- Responsividade (Media Queries) --- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }
    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    /* Navbar Mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg-primary);
        z-index: 1000;
        padding: 100px 40px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .btn-header {
        display: none; /* Oculta na navbar em tablets, fica visível no menu se necessário */
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(34, 22, 16, 0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Toggle Icon Animation */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    /* Hero Section Mobile */
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-top: var(--header-height);
    }
    
    .hero-services-ticker {
        position: relative;
        width: 100%;
        bottom: 0;
        padding-left: 0;
        margin-top: 20px;
        order: 3;
        padding-bottom: 20px;
    }
    .hero-container {
        width: 100%;
        padding-top: 60px;
        padding-bottom: 40px;
        order: 1;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 50vh;
        border-left: none;
        border-top: 2px solid rgba(197, 168, 128, 0.4);
        box-shadow: 0 -15px 40px rgba(0,0,0,0.6);
        order: 2;
    }
    
    .hero-scroll-indicator {
        display: none;
    }

    /* Grids */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    /* Ajuste para 2 colunas em tablets */
    @media (min-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr 1fr;
        }
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-floating {
        bottom: -15px;
        right: 15px;
        padding: 16px 20px;
        max-width: 180px;
    }
    
    .stats-badge .number {
        font-size: 2.2rem;
    }
    
    .stats-badge .label {
        font-size: 0.7rem;
    }
    
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .testimonial-text {
        font-size: 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Instagram Carousel Mobile Adjustments */
    .insta-carousel {
        height: 320px;
    }
    .insta-slide-info {
        padding: 20px;
    }
    .insta-slide-info p {
        font-size: 0.95rem;
    }
    .insta-prev, .insta-next {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .insta-prev {
        left: 10px;
    }
    .insta-next {
        right: 10px;
    }
}
