:root {
    --verde-escuro: #1a473d; /* Verde bem profundo quase preto */
    --amarelo-dourado: #dbac1a;
    --cinza-fundo: #eef2f3;
    --branco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
        body { font-family: 'Raleway', sans-serif;  
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
 }

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

/* Header */
header {
    background-color: var(--verde-escuro);
    padding: 20px 0;
    border-bottom: 2px solid var(--amarelo-dourado);
}

        header.navbar {
            background-color: var(--verde-escuro) !important;
            padding: 1rem 5%;
            border-bottom: 2px solid var(--amarelo-dourado);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand { 
            width: 40%;
        }
        .navbar-brand img{ 
            width: 80%;
        }

        .nav-link { 
            color: var(--amarelo-dourado) !important; 
            font-size: 0.9rem; 
            margin-left: 15px;
            transition: 0.3s;
            font-family: 'Arial', serif;
            font-weight: 200;
        }

        .nav-link:hover { color: white !important; }

        /* Botão Hamburguer Customizado */
        .navbar-toggler { border-color: var(--dourado); }
        .navbar-toggler-icon { 
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(212, 175, 55, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }


/* Hero Section */
.hero {
    height: 400px !important;
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1352&q=80') center/cover;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-text h1 {
    color: white;
    font-size: 2.5rem;
    border-left: 5px solid var(--amarelo-dourado);
    padding-left: 20px;
}

/* Services */
.services-section {
    padding: 60px 20px;
    background-color: var(--cinza-fundo);
}

.section-title {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #444;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.grid-portifolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--branco);
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card img {
    width: 19.5vw; min-height: 5.0vw; max-height: 5.0vw;
}

.service-card .icon {
    font-size: 2rem;
    color: var(--verde-escuro);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    font-size: 0.85rem;
    color: #777;
}

/* Footer */
footer {
    background-color: #1a473d;
    color: white;
    padding: 40px 0;
}

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

.footer-grid2 {display: none !important;}

.footer-nav a {
    color: var(--amarelo-dourado);
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-logo {
    width: 30%; 
    margin-top: 0px;
}
.footer-logo img {
    width: 100%; 
}


.socials {
    width: 30%; 
    display: flex;
    gap: 15px;
    padding: 20px;
    /* Aplicando a cor que você pediu ao fundo da seção */
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1); /* Um brilho suave */
    color: #FFD700; /* Dourado para combinar com o raio do logo */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background-color: #FFD700;
    color: #01622C;
    transform: translateY(-3px);
}
.hero-small {
    height: 300px; /* Menor que a home */
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1352&q=80') center/cover;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.service-list li {
    font-size: 0.8rem;
    color: var(--verde-escuro);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--amarelo-dourado);
    font-weight: bold;
}

/* Ajuste de responsividade para os cards */
.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}
        /* Estilos Específicos do Contato */
        .contact-container {
            max-width: 900px;
            margin: 50px auto;
            padding: 0 20px;
            display: flex;
            gap: 40px;
            align-items: flex-start;
        }

        h1 {
            color: var(--cor-verde-escuro);
            font-size: 36px;
            margin-bottom: 10px;
            text-align: center;
        }

        .contact-info, .contact-form-container {
            flex: 1;
            padding: 20px;
            border-radius: 8px;
        }

        /* ----- Seção de Informações e WhatsApp ----- */
        .contact-info {
            background-color: #f7f7f7;
            border-left: 5px solid var(--cor-amarelo-dourado);
        }
        
        .contact-info h2 {
            color: var(--cor-verde-escuro);
            margin-top: 0;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }

        .contact-info p {
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Estilo do Botão WhatsApp */
        .whatsapp-link {
            display: inline-flex ;
            position: absolute !important;
            align-items: center;
            background-color: var(--cor-whatsapp); 
            color: var(--cor-texto-claro);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 17px;
            margin-top: 15px;
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-link:hover {
            background-color: #1DA851; /* Tom mais escuro ao passar o mouse */
        }

        .whatsapp-link::before {
            content: "📞"; /* Ícone simples de telefone ou use um ícone real do WhatsApp (SVG ou Font Awesome) */
            margin-right: 10px;
        }


        /* ----- Estilo do Formulário ----- */
        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--cor-verde-escuro);
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 16px;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Botão de Envio */
        .contact-form button {
            background-color: var(--cor-amarelo-dourado);
            color: var(--cor-verde-escuro); 
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #EBC37A; /* Tom mais claro ao passar o mouse */
        }


       /* Adicione ou atualize estas classes no seu CSS */

.menu-toggle {
    display: none; /* Escondido no desktop */
    color: var(--amarelo-dourado);
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero {
    height: 550px !important;
}

.navbar-collapse {
    background-color: var(--verde-profundo);
    padding: 20px 0;
}
.nav-link { margin: 10px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }

.navbar-brand { 
width: 100%;
}

.navbar-brand img{ 
    width: 100%;
}

.service-card img {
    width: 70.5vw; min-height: 20.0vw; max-height: 20.0vw;
}

/* Footer */
footer {
    background-color: #1a473d;
    color: white;
    padding: 40px 0;
}

.footer-grid {display: none !important;}


.footer-grid2 {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.footer-nav a {
    color: var(--amarelo-dourado);
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-logo {
    width: 100%; 
    margin-top: 0px;
}
.footer-logo img {
    width: 100%; 
}
.footer-contato {
    width: 100%; 
    margin-top: 30px;
}

}
