:root {
    --color-white: #ffffff;
    --color-light-bg: #f5f6fa;
    --color-dark-blue: #051b3b;
    --color-deep-blue: #020e21;
    --color-accent-blue: #0066cc;
    --color-accent-hover: #005bb5;
    --color-text-dark: #1a202c;
    --color-text-light: #e2e8f0;
    --color-border: rgba(255, 255, 255, 0.2);
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    /* Rolagem suave nativa removida para usar JS customizado (mais lento) */
}

body {
    font-family: var(--font-sans);
    background-color: transparent;
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, .section-title {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

h1:hover, h2:hover, h3:hover, h4:hover, .section-title:hover {
    transform: scale(1.05);
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

em {
    font-family: var(--font-serif);
    font-weight: 600;
    font-style: italic;
    color: var(--color-accent-blue);
    font-size: 1.15em;
}

.text-white { color: var(--color-white) !important; }
.text-white em, .hero-content em { color: #66b3ff; }
.text-dark { color: var(--color-text-dark) !important; }
.text-light-opacity { color: rgba(255, 255, 255, 0.7); }
.lead-text { font-size: 1.2rem; color: #4a5568; margin-bottom: 1.5rem; font-weight: 500; }

.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Fundo Fixo (Canvas) */
.fixed-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: #000;
}

canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Barra de Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(2, 14, 33, 0.9) 0%, rgba(2, 14, 33, 0) 100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--color-accent-blue); }

/* Menu Hambúrguer */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-hover));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-block { width: 100%; display: block; text-align: center; }

.btn-desktop-nav {
    margin-left: auto;
}

/* Seção Principal (Hero) */
.hero-section {
    position: relative;
    height: 100vh; /* Alterado de 300vh para que as seções deslizem imediatamente */
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Alinhado à esquerda */
    text-align: left; /* Texto alinhado à esquerda */
    padding: 0 2rem 0 10%; /* Espaçamento à esquerda para alinhamento */
    color: var(--color-white);
    pointer-events: auto;
    
    /* Gradiente transparente da esquerda para a direita */
    background: linear-gradient(to right, rgba(2, 14, 33, 0.8) 0%, rgba(5, 27, 59, 0) 100%);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    max-width: 800px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-top: 10rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
}

/* Classes de Glassmorfismo (Efeito Vidro) */
.glass-wrapper {
    position: relative;
    z-index: 10;
    background-color: transparent;
}

/* Classe base para seções de conteúdo */
.content-section {
    padding: 7rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.glass-white {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 246, 250, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--color-text-dark);
}

.glass-dark {
    background: linear-gradient(135deg, rgba(2, 14, 33, 0.85) 0%, rgba(5, 27, 59, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--color-white);
}

.glass-blue {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 91, 181, 0.9) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--color-white);
}

.glass-footer {
    background: rgba(1, 10, 24, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Selos (Badges) */
.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-blue);
    margin-bottom: 1rem;
}
.badge-light { color: #66b3ff; }

/* Seções Divididas */
.section-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.section-split.align-start {
    align-items: flex-start;
}

.split-left, .split-right {
    flex: 1;
}

/* Cartões Efeito Vidro */
.glass-card-light {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card-light:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.glass-card-dark:hover { 
    background: rgba(255, 255, 255, 0.1); 
    transform: scale(1.03) translateY(-5px);
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.icon {
    margin-bottom: 1rem;
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
}

.info-card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
}

/* Cartões de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

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

/* Grade de Diferenciais */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: -1rem;
}

.feature-item h3 {
    color: var(--color-white);
    font-size: 1.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Cartões do Instagram */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.insta-card {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    color: var(--color-text-dark);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.insta-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
}

.insta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid rgba(0,0,0,0.1);
}

.insta-user {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    line-height: 1.2;
}

.insta-user span {
    font-size: 0.75rem;
    color: #718096;
}

.insta-more {
    margin-left: auto;
    color: #4a5568;
    cursor: pointer;
}

.insta-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.insta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-card:hover .insta-image img {
    transform: scale(1.1);
}

.insta-actions {
    display: flex;
    padding: 1rem 1rem 0.5rem;
    gap: 1rem;
    color: var(--color-text-dark);
}

.insta-actions svg {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.insta-actions svg:hover {
    transform: scale(1.1);
}

.save-icon {
    margin-left: auto;
}

.insta-likes {
    padding: 0 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.insta-caption {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Detalhes de Contato */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item.full-width {
    /* Não é mais necessário para coluna flexível, mas mantido por segurança */
}

.contact-item h4 { 
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.4rem; 
    font-size: 0.95rem; 
    color: rgba(255,255,255,0.7); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    line-height: 1.4;
}

.contact-icon {
    color: var(--color-accent-blue);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item p { margin: 0; font-size: 1.1rem; padding-left: 2rem; }

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-accent-blue);
}

/* Acordeão de Horário de Funcionamento */
.hours-details {
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.hours-details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-white);
    list-style: none; /* Remover marcador padrão */
}

.hours-details summary::-webkit-details-marker {
    display: none;
}

.hours-details .chevron {
    transition: transform 0.3s ease;
    color: var(--color-accent-blue);
}

.hours-details[open] .chevron {
    transform: rotate(180deg);
}

.hours-list {
    list-style: none;
    padding: 0 1rem 1rem 1rem;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-list li.today {
    color: #66b3ff;
    font-weight: 600;
    background: rgba(0, 102, 204, 0.1);
    padding: 0.75rem 0.5rem;
    border-radius: 4px;
    margin: 0 -0.5rem;
}

/* Formulário */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Rodapé */
.site-footer {
    color: rgba(255, 255, 255, 0.4);
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-links a:hover { color: var(--color-white); }

.fixed-bg-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; background: var(--color-deep-blue) url('assets/imagens/banner.webp') no-repeat center center; background-size: cover; will-change: transform; }

/* Consultas de Mídia Responsivas */
@media (max-width: 992px) {
    .section-split { flex-direction: column; }
    .services-grid, .features-grid, .insta-grid { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 2.8rem; }
    .hero-content { padding: 0 2rem; }
}

@media (max-width: 768px) {
    .services-grid, .features-grid, .insta-grid { grid-template-columns: 1fr; }
    .contact-details { grid-template-columns: 1fr; }
    
    h1 { font-size: 2.3rem; }
    
    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 1.5rem 3rem 1.5rem;
        background: linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(17, 17, 17, 0.8) 55%, #111 75%, #111 100%);
        justify-content: flex-end;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        margin-top: 4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 0.8rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    /* Barra de Navegação Mobile */
    .hamburger { display: flex; }
    .btn-desktop-nav { display: none; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(2, 14, 33, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .nav-links.active {
        max-height: 400px; /* altura arbitrária para caber o conteúdo */
        padding: 1rem 0 2rem 0;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-links a { margin: 0 0.75rem; }

    .fixed-bg-container {
        background-image: linear-gradient(to top, var(--color-deep-blue) 0%, transparent 15%), url('assets/imagens/banner-mobile.webp');
        background-size: 100% 100vh, cover;
        background-position: center bottom, center top;
        background-repeat: no-repeat, no-repeat;
        background-color: var(--color-deep-blue);
    }

    .floating-whatsapp {
        display: flex;
    }
}

/* --- Elegant Animations --- */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.delay-100 { animation-delay: 100ms; transition-delay: 100ms; }
.delay-200 { animation-delay: 200ms; transition-delay: 200ms; }
.delay-300 { animation-delay: 300ms; transition-delay: 300ms; }
.delay-400 { animation-delay: 400ms; transition-delay: 400ms; }
.delay-500 { animation-delay: 500ms; transition-delay: 500ms; }

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Botão WhatsApp Flutuante */
.floating-whatsapp {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}
