/* Estilos Globais e Reset */
body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f6f8;
    color: #333;
    line-height: 1.7;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    color: #1A2B4C; /* Azul escuro corporativo */
    margin-top: 0;
    margin-bottom: 0.75em;
    font-weight: 700;
}

h1 { font-size: 2.8em; line-height: 1.2; }
h2 { font-size: 2.2em; line-height: 1.25; }
h3 { font-size: 1.75em; line-height: 1.3; }
h4 { font-size: 1.25em; line-height: 1.35; }

p {
    margin-bottom: 1.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cabeçalho */
header {
    background-color: #ffffff;
    padding: 15px 0; 
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

#logo {
    max-height: 70px; 
    transition: transform 0.3s ease;
}

#logo:hover {
    transform: scale(1.05);
}

.cta-button {
    background-color: #ff530d; /* Nova cor laranja solicitada */
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    border: none;
}

.cta-button:hover {
    background-color: #e64a00; /* Laranja mais escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Seção Herói */
#hero {
    background-image: url('../assets/hero_background.jpeg'); /* Nova imagem de fundo */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0; 
    text-align: center;
    position: relative; 
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

#hero .container {
    max-width: 800px;
    position: relative; 
    z-index: 2;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

#hero p {
    font-size: 1.25em;
    margin-bottom: 2em;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#hero .cta-button {
    background-color: #ff530d; 
    font-size: 1.1em;
    padding: 18px 35px;
}

#hero .cta-button:hover {
    background-color: #e64a00; 
}

/* Seções Gerais */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff530d; /* Laranja para o sublinhado */
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Sobre Nós */
#sobre-nos .container {
    max-width: 900px;
}
#sobre-nos p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    line-height: 1.8;
}
.sobre-nos-imagens {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 30px;
}

.sobre-nos-imagens img {
    width: 48%; 
    max-width: 300px; 
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/* Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.produto-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.produto-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.produto-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1A2B4C;
}

.produto-card p {
    font-size: 0.95em;
    color: #555;
    flex-grow: 1;
    margin-bottom: 15px;
}

#produtos .cta-button {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Benefícios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.beneficio-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    text-align: left;
}

.beneficio-card h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #1A2B4C; 
}

.beneficio-card p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.7;
}

/* Seção Vídeo Institucional */
#video-institucional {
    background-color: #e9ecef; /* Um fundo suave para a seção do vídeo */
    padding: 60px 0;
}

#video-institucional h2 {
    margin-bottom: 40px;
}

#video-institucional video {
    max-width: 800px; /* Limita a largura máxima do vídeo */
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* CTA Final */
#cta-final {
    background-color: #1A2B4C;
    color: white;
    padding: 70px 0;
}

#cta-final .container {
    max-width: 700px;
}

#cta-final h2,
#cta-final p {
    color: white;
}

#cta-final p {
    font-size: 1.1em;
    opacity: 0.9;
}

#cta-final .whatsapp-button-large {
    font-size: 1.2em;
    padding: 18px 40px;
    background-color: #ff530d; /* Nova cor laranja solicitada */
    margin-top: 20px;
}

#cta-final .whatsapp-button-large:hover {
    background-color: #e64a00; /* Laranja mais escuro */
}

/* Rodapé */
footer {
    background-color: #121E31;
    color: #adb5bd;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9em;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 8px;
}

footer a {
    color: #8ab4f8;
}

footer a:hover {
    color: #bac8ff;
}

.social-icons {
    margin-top: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    color: #adb5bd;
    font-size: 1.5em; /* Tamanho dos ícones */
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff; /* Cor ao passar o mouse */
}


/* Responsividade */
@media (max-width: 992px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    #hero h1 { font-size: 2.6em; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    .container { width: 95%; }
    header .container {
        flex-direction: column;
        text-align: center;
    }

    #logo {
        margin-bottom: 15px;
        max-height: 60px; 
    }

    header .cta-button {
        margin-top: 10px;
    }

    #hero {
        padding: 80px 0;
    }

    #hero h1 {
        font-size: 2.2em;
    }

    #hero p {
        font-size: 1.1em;
    }

    .produtos-grid,
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-nos-imagens {
        flex-direction: column; 
        align-items: center;
    }

    .sobre-nos-imagens img {
        width: 80%; 
        max-width: none; 
        margin-bottom: 15px;
    }

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    section h2::after {
        width: 60px;
        height: 3px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    #hero h1 { font-size: 1.8em; }
    #hero p { font-size: 1em; }

    .cta-button, #hero .cta-button, #cta-final .whatsapp-button-large {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    #cta-final .whatsapp-button-large {
        padding: 12px 25px;
    }

    .social-icons a {
        font-size: 1.3em; /* Ajustar tamanho dos ícones para mobile */
        margin: 0 8px;
    }
}

