/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* UTILITÁRIOS */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* ------------------------------------- */
/* NOVO ESTILO: SEÇÃO HERO COM BACKGROUND */
/* ------------------------------------- */
.hero {
    /* Imagem de Fundo para o HERO */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(
	'portogig.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax suave */
    
    color: white;
    padding: 150px 0; /* Aumento do padding para dar destaque */
    text-align: center;
}

.hero h1 {
    font-size: 3.5em; /* Aumento da fonte */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para o texto */
}

.hero h2 {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* BOTÃO DE CTA (Call To Action) */
.cta-button {
    display: inline-block;
    background-color: #FFD700; /* Dourado */
    color: #333;
    padding: 15px 35px; /* Botão maior */
    text-decoration: none;
    border-radius: 50px; /* Botão arredondado */
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #FFC72C;
    transform: translateY(-2px);
}

/* ESTILO GERAL DAS SEÇÕES */
.section {
    padding: 60px 0;
    text-align: center;
}

.section h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #556B2F;
}

.section p {
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* SEÇÃO SOBRE NÓS/CARDS */
.sobre {
    background-color: white;
}

.grid-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.card {
    background-color: #F0FFF0;
    border: 1px solid #E0EEE0;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 300px;
    text-align: left;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.card h4 {
    color: #556B2F;
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* ------------------------------------- */
/* NOVO ESTILO: GALERIA */
/* ------------------------------------- */
.galeria {
    background-color: #E6EADF; /* Cor de fundo suave */
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 4 colunas em telas grandes, flexível */
    gap: 20px;
    margin-top: 40px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.galeria-item img {
    width: 100%;
    height: 250px; /* Altura fixa para manter o visual limpo */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    display: block;
    transition: transform 0.3s ease;
}

.galeria-item img:hover {
    transform: scale(1.05); /* Zoom ao passar o mouse */
}

/* SEÇÃO DE CONTATO */
.contato {
    background-color: white; /* Cor de fundo alternada */
}

.contato-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.contato-info a {
    color: #556B2F;
    text-decoration: none;
    font-weight: 700;
}

.contato-info a:hover {
    text-decoration: underline;
}

/* BOTÃO DE WHATSAPP */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    text-decoration: none;
}

.whatsapp-button .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: invert(1); 
}

/* RODAPÉ */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
}

/* MEDIA QUERY PARA RESPONSIVIDADE EM TELAS MENORES */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero h2 {
        font-size: 1.2em;
    }
    .grid-cards {
        flex-direction: column;
    }
    .card {
        flex: 1 1 100%;
    }
}