@font-face {
    font-family: 'GalenaPro';
    src: url('../fonts/galena-italic.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: italic;
    font-display: swap; /* Ajuda a carregar o site mais rápido */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

:root {
    --preto: #121212;
    --preto-light: #1f1f1f;
    --dourado: #d4af37;
    --amarelo: #ffcc00;
    --branco: #ffffff;
    --whatsapp: #25d366;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: var(--preto);
    line-height: 1.6;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. HEADER E NAVEGAÇÃO
   ========================================= */
.main-header {
    background: var(--preto);
    padding: 15px 0;
    border-bottom: 3px solid var(--branco);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: 'GalenaPro', sans-serif; /* Puxa a fonte nova */
    color: var(--amarelo);
    font-size: 1.8rem;
    font-weight: 500; /* Medium, conforme a fonte */
    font-style: italic; /* Reforça o Itálico */
    letter-spacing: 1px;
}

.logo span {
    color: var(--branco);
    font-weight: 300;
    margin-right: 5px; /* Ajuste para o espaço entre CHAVEIRO e ELLO */
}
/* Menu de Navegação (Desktop) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

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

.btn-top-call {
    background: var(--dourado);
    color: var(--preto);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-top-call:hover {
    background: var(--amarelo);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

/* =========================================
   3. COMPONENTES REUTILIZÁVEIS (Botões e Títulos)
   ========================================= */
.btn-primary-gold {
    display: inline-block;
    background: var(--branco);
    color: var(--preto);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.4);
    transition: 0.3s;
    text-align: center;
}

.btn-primary-gold:hover {
    transform: scale(1.05);
    background: var(--branco);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--dourado);
    margin: 10px auto;
}

/* =========================================
   4. PÁGINA: HOME
   ========================================= */
/* Hero Section */
.hero-section {
    background-color: var(--amarelo);
    padding: 60px 0;
    text-align: center;
    color: var(--branco);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--preto);
}

.hero-content h1 strong {
    color: var(--preto);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    color: var(--preto);
}

/* Barra de Benefícios */
.benefits-bar {
    background: var(--dourado);
    padding: 15px 0;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-item {
    color: var(--preto);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.benefit-item i {
    margin-right: 5px;
}

/* Cards de Serviços */
.services-section {
    padding: 70px 0;
}

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

.service-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--dourado);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--preto);
    color: var(--amarelo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* =========================================
   5. PÁGINA: CONTATO
   ========================================= */
.hero-mini {
    background: var(--preto);
    padding: 60px 0;
    text-align: center;
    color: var(--branco);
    border-bottom: 2px solid var(--dourado);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 50px 0;
}

.info-card {
    background: var(--branco);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--dourado);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--dourado);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* =========================================
   6. WIDGETS E FOOTER
   ========================================= */
/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    color: var(--branco);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background: #1ebd59;
    transform: scale(1.05);
}

/* Rodapé e Assinatura */
.main-footer {
    
    background: var(--preto);
    color: #ccc;
    padding: 40px 0 20px;
    text-align: center;
}

.main-footer span {
    font-family: 'GalenaPro', sans-serif;
    background: var(--preto);
    color: #ccc;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-info p {
    color: var(--branco);
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 25px auto;
    width: 60%;
}

.developer-signature p {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.5px;
}

.developer-signature i {
    color: var(--dourado);
    margin: 0 4px;
}

.developer-signature a {
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-signature a strong {
    font-weight: 800;
    letter-spacing: 1px;
}

.developer-signature a:hover {
    color: var(--amarelo);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.gallery-section {
    padding: 70px 0;
    background-color: var(--branco); 
}

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

.carousel-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Faz a foto "encaixar" no meio da tela no celular */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Suavidade nativa no iPhone/Android */
    padding-bottom: 15px; 
}

/* Esconde a barra de rolagem feia do navegador */
.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-slide {
    min-width: calc(33.333% - 10px); /* No PC: Mostra 3 fotos por vez */
    scroll-snap-align: center;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-slide img {
    width: 100%;
    height: 350px; /* Altura fixa para as fotos não ficarem tortas */
    object-fit: cover; /* Corta a imagem com perfeição sem amassar */
    display: block;
}


/* =========================================
   7. MEDIA QUERIES (Responsividade Mobile)
   ========================================= */
@media (max-width: 768px) {

    /* Header e Menu */
.header-grid {
        flex-direction: row; /* Mantém logo e botão na mesma linha */
        justify-content: space-between;
        flex-wrap: wrap; /* Permite que o menu caia para a linha de baixo */
        padding: 10px 10px;
    }
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        color: var(--dourado);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 5px;
    }

.nav-menu {
        display: none; 
        width: 100%;
        flex-direction: column;
        gap: 15px;
        background: var(--preto-light); /* Fundo um pouco mais claro para destacar */
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        display: flex;
        animation: descerMenu 0.3s ease-in-out;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-header{
        position: relative;
    }

.btn-top-call {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        font-size: 0.85rem; /* Botão menor */
        padding: 12px;
    }

    /* Hero e Textos */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary-gold {
        padding: 15px 20px;
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        padding: 0; /* Remove o enchimento retangular */
        justify-content: center; /* Centraliza o ícone perfeitamente */
        bottom: 20px;
        right: 20px;
        border-radius: 50%; /* Garante a forma de bolinha */
    }

    /* Esconde o texto no celular */
    .whatsapp-float span {
        display: none; 
    }

    /* Aumenta um pouquinho o ícone para ele preencher bem a bolinha */
    .whatsapp-float i {
        font-size: 2rem;
        margin: 0;
    }

    @keyframes descerMenu {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Benefícios */
    .benefits-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .benefit-item {
        font-size: 1.1rem;
    }

    /* Contato Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .carousel-slide {
        /* No Celular: Mostra 1 foto e um pedaço da próxima para induzir o arrasto */
        min-width: 85%; 
    }
    .carousel-slide img {
        height: 220px; 
    }
}


