/* Importação de fontes (já no HTML, mas pode ser aqui também) */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap'); */

/* Variáveis CSS para cores e tamanhos */
:root {
    --primary-color: #007bff; /* Azul primário da Estapar */
    --secondary-color: #f7a600; /* Amarelo/Laranja secundário */
    --text-color: #333;
    --light-text-color: #666;
    --dark-bg-color: #0d1a26; /* Azul escuro do footer */
    --light-bg-color: #f8f9fa; /* Fundo de seção clara */
    --white: #fff;
    --gray-light: #e9ecef;
    --gray-medium: #dee2e6;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
	--font-nav:'Inter',sans-serif;

    --max-width: 1200px;
}

/* Reset básico e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Utilitários */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0056b3; /* Tom mais escuro do azul */
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #cc8500; /* Tom mais escuro do amarelo */
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 40px; /* Garante que o logo não seja muito grande */
    width: auto; /* Mantém a proporção */
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    font-family: var(--font-nav);
	color: var(--text-color);
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav .login-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
}

.main-nav .login-button:hover {
    background-color: #0056b3;
}

.hamburger-menu {
    display: none; /* Esconde por padrão, visível apenas em mobile */
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    /* Nova imagem para o background do hero section */
    
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
}

.hero-overlay {
    background-image: url("img/foto4.jpg");
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5); /* Escurece a imagem para melhor contraste do texto */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* Intro Text Section */
.intro-text-section {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.intro-text-section h2 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: var(--primary-color);
}

.intro-text-section p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1rem auto;
    color: var(--light-text-color);
}

/* Advantages Section */
.advantages-section {
    background-color: var(--light-bg-color);
    padding: 4rem 0;
    text-align: center;
}

.advantages-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-item .icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color); /* Mantém a cor de fundo para o ícone */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 2rem;
    color: var(--white);
}

.advantage-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advantage-item p {
    font-size: 0.95rem;
    color: var(--light-text-color);
}

/* Solutions Section */
.solutions-section {
    padding: 4rem 0;
    text-align: center;
}

.solutions-section h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

..solution-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    /* As URLs das imagens foram movidas para o HTML inline no `style="background-image: url(...)"` */
}

.solution-card h4 {
    color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    padding: 0 1.5rem 1.5rem 1.5rem;
    flex-grow: 1; /* Para garantir que o botão fique no final */
}

.solution-card .btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--light-bg-color);
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap; /* Permite que os itens quebrem a linha em telas menores */
}

.contact-text {
    flex: 1;
    min-width: 300px; /* Garante um tamanho mínimo para o texto */
}

.contact-text h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--light-text-color);
}

.contact-form-wrapper {
    flex: 2; /* Ocupa o dobro do espaço do texto */
    min-width: 400px; /* Garante um tamanho mínimo para o formulário */
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-group {
    flex: 1 1 calc(50% - 0.75rem); /* Duas colunas com gap */
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
}

.form-group textarea {
    resize: vertical;
}

.captcha-placeholder {
    height: 60px; /* Altura de um reCAPTCHA comum */
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text-color);
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    text-align: center;
}

.testimonials-section h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.logo-carousel-placeholder {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.client-logo img {
    max-height: 60px; /* Garante que os logos não sejam muito grandes */
    width: auto; /* Mantém a proporção */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo img:hover {
    opacity: 1;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-bg-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 1rem;
    color: var(--light-text-color);
}

.testimonial-author strong {
    color: var(--primary-color);
}

/* CTA Section Bottom */
.cta-section-bottom {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 3.5rem 0;
}

.cta-section-bottom h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section-bottom .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg-color);
    color: var(--white);
    padding: 4rem 0 1.5rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--white);
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.address {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.7;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links-bottom a {
    color: var(--white);
    margin: 0 0.5rem;
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}


/* --- Media Queries para Responsividade --- */

/* Telas menores que 992px (tablets e alguns desktops menores) */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .intro-text-section h2 {
        font-size: 2rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-text, .contact-form-wrapper {
        min-width: unset;
        width: 100%;
    }

    .cta-section-bottom h2 {
        font-size: 2rem;
    }
}

/* Telas menores que 768px (tablets e smartphones) */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Esconde o menu de navegação normal */
    }

    .hamburger-menu {
        display: block; /* Mostra o ícone do hambúrguer */
    }

    /* Em um projeto real, aqui você implementaria um menu responsivo com JS */

    .hero-section {
        min-height: 400px;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .intro-text-section h2 {
        font-size: 1.8rem;
    }

    .advantages-section h3,
    .solutions-section h3,
    .testimonials-section h3 {
        font-size: 1.6rem;
    }

    .advantage-grid, .solution-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }

    .form-group {
        flex: 1 1 100%; /* Campos do formulário em uma única coluna */
    }

    .logo-carousel-placeholder {
        justify-content: space-around; /* Distribuir logos uniformemente */
    }

    .client-logo img {
        max-height: 45px; /* Ajuste para logos de clientes em telas menores */
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
    }

    .cta-section-bottom h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-info {
        order: -1; /* Move social info para cima */
        text-align: center;
        width: 100%; /* Ocupa toda a largura */
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links-bottom {
        order: -1; /* Move links inferiores para cima */
    }
}

/* Telas menores que 480px (smartphones menores) */
@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .intro-text-section,
    .advantages-section,
    .solutions-section,
    .contact-form-section,
    .testimonials-section,
    .cta-section-bottom,
    .main-footer {
        padding: 2.5rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}/* CSS Document */

