/* ==================== CONFIGURAÇÕES GLOBAIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #cca43b;
    --dark-bg: #0b0b0b;
    --card-bg: #161616;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

html {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-white);
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0.5rem auto 0;
}


/* ==================== ANIMAÇÕES DE SCROLL ==================== */
/* Mantenha o estado original dos seus cards aqui (sem ocultar) */
.scroll-animated {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    opacity: 1; /* Garante que eles apareçam por padrão */
    transform: translateY(0);
}

/* Esta é a classe que o JS vai aplicar para o efeito de "sumir/surgir" */
.scroll-animated.is-hidden {
    opacity: 0;
    transform: translateY(40px);
}
/* ==================== HEADER & MENU ==================== */
header {
    background-color: rgba(11, 11, 11, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 155px; 
    width: auto;  
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-instagram {
    color: var(--text-gray);
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-instagram:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-menu-cta {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-menu-cta:hover {
    background-color: var(--gold);
    color: #000;
}

/* ==================== HERO SECTION ==================== */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('/assets/hero-bg.jpg') center/cover no-repeat;
    
    /* Centralização total */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    text-align: center;      /* Centraliza o texto */
    position: relative;
}

.hero .container {
    width: 100%;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo dentro do container */
}

.hero-content {
    width: 100%;
    max-width: 800px;        /* Aumentei um pouco para dar respiro */
    display: flex;
    flex-direction: column;
    align-items: center;     /* Centraliza os itens filhos (h1, p, btn) */
    padding: 0 20px;         /* Padding para não encostar nas laterais no mobile */
}
.hero h1, 
.hero h1 span {
    font-family: "Cookie", cursive;
    font-weight: 400;
    text-transform: none; 
}

.hero h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    font-size: 6rem;
    color: var(--gold);
    display: inline-block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background-color: var(--gold);
    color: #000000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

/* ==================== NOSSOS DIFERENCIAIS ==================== */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    /* Aplicando a transição para zoom e sombra */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.feature-item:hover {
    transform: scale(1.05); /* Zoom de 5% no card todo */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); /* Sombra para dar profundidade no zoom */
    border-color: rgba(204, 164, 59, 0.3); /* Um brilho dourado leve nas bordas ao passar o mouse */
    cursor: pointer;
}

.feature-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    text-transform: uppercase;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== SERVIÇOS ==================== */
.services {
    padding: 6rem 0;
    background-color: #0f0f0f;
}

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

.service-card {
    background-color: var(--card-bg);
    border-radius: 6px;
    overflow: hidden;
    /* Adicionando transição para o efeito de zoom */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Efeito de Zoom e Destaque ao passar o mouse */
.service-card:hover {
    transform: scale(1.05); /* Zoom de 5% */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); /* Sombra para profundidade */
    cursor: pointer;
    border: 1px solid rgba(204, 164, 59, 0.3); /* Contorno dourado sutil no hover */
}

.service-img-placeholder {
    height: 200px;
    background-color: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    /* Garante que a imagem/placeholder também acompanhe o movimento */
    transition: background-color 0.4s ease;
}

/* Efeito extra: altera levemente a cor do fundo da imagem no hover */
.service-card:hover .service-img-placeholder {
    background-color: #252525;
}

.service-info {
    padding: 1.5rem;
    text-align: center;
}


/* Estado inicial (escondido) */
.scroll-animated {
    opacity: 0;
    transform: translateY(30px); /* Começa 30px abaixo */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Estado final (quando a classe .visible é adicionada pelo JS) */
.scroll-animated.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ==================== COMO TRABALHAMOS ==================== */
.process {
    padding: 6rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* ==================== GALERIA (CONFIGURAÇÃO FINAL) ==================== */
.gallery { 
    padding: 4rem 0; 
    background: #000; 
    overflow: hidden; 
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 10px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content; 
    animation: scroll 300s linear infinite;
    flex-wrap: nowrap; 
}

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

/* Slot com tamanho controlado (350px largura / 250px altura) */
.carousel-slot {
    flex: 0 0 350px; 
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.carousel-slot:hover {
    transform: scale(1.05);
}

.carousel-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsividade */
@media (max-width: 1400px) { .carousel-slot { flex: 0 0 300px; height: 220px; } }
@media (max-width: 992px) { .carousel-slot { flex: 0 0 250px; height: 180px; } }
@media (max-width: 576px) { .carousel-slot { flex: 0 0 200px; height: 140px; } }
/* ==================== FAQ ESTILIZADO ==================== */
.faq { padding: 6rem 0; }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    background-color: var(--card-bg);
    margin-bottom: 1.5rem; /* Espaçamento maior entre cards */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

/* Efeito de brilho ao passar o mouse */
.faq-item:hover {
    border-color: rgba(204, 164, 59, 0.3);
    background-color: #1a1a1a;
}

.faq-question {
    width: 100%;
    padding: 1.8rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Destaque no título quando aberto */
.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2); /* Leve contraste no fundo da resposta */
}

.faq-answer p {
    min-height: 0;
    margin: 0;
    padding: 0 1.8rem;
    opacity: 0;
    color: var(--text-gray); /* Cor suave para leitura */
    line-height: 1.7;
    transition: opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    padding-bottom: 1.8rem;
    padding-top: 0.5rem;
}

/* Ícone estilizado */
.faq-icon {
    color: var(--gold);
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--gold);
    color: var(--dark-bg);
}
/* ==================== FOOTER & RESPONSIVIDADE ==================== */
footer {
    background-color: #050505;
    padding: 5rem 0 2rem;
    text-align: center;
}


@media (max-width: 768px) {
    .nav-menu { display: none; } 
    .hero h1, .hero h1 span { font-size: 4rem; }
}
