/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333; /* Cinza Escuro */
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0; /* Adicionado para um visual mais clean */
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2A527A; /* Azul Escuro */
}

.logo h1 span {
    color: #DC2626; /* Vermelho */
}

.logo p {
    font-size: 0.9rem;
    color: #666666; /* Cinza Médio */
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333333; /* Cinza Escuro */
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2A527A; /* Azul Escuro */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2A527A; /* Azul Escuro */
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333333; /* Cinza Escuro */
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); /* Mantido para um fundo suave */
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 0.5rem;
}

.hero-text h1 span {
    color: #DC2626; /* Vermelho */
}

.hero-text h2 {
    font-size: 1.5rem;
    color: #666666; /* Cinza Médio */
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555; /* Mantido para contraste */
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2A527A; /* Azul Escuro */
    color: white;
}

.btn-primary:hover {
    background: #1e3a8a; /* Um pouco mais escuro para hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 82, 122, 0.3); /* Sombra ajustada */
}

.btn-secondary {
    background: transparent;
    color: #2A527A; /* Azul Escuro */
    border: 2px solid #2A527A; /* Azul Escuro */
}

.btn-secondary:hover {
    background: #2A527A; /* Azul Escuro */
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #2A527A; /* Azul Escuro */
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2A527A, #DC2626); /* Azul Escuro para Vermelho */
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666666; /* Cinza Médio */
}

/* About Section */
.about {
    background: #FFFFFF; /* Branco */
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555; /* Mantido para contraste */
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #f8fafc; /* Mantido para um fundo suave */
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0; /* Adicionado para um visual mais clean */
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666666; /* Cinza Médio */
    font-weight: 500;
}

/* Services Section */
.services {
    background: #f8fafc; /* Mantido para um fundo suave */
}

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

.service-card {
    background: #FFFFFF; /* Branco */
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra mais suave */
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0; /* Adicionado para um visual mais clean */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Sombra mais suave no hover */
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2A527A, #3B82F6); /* Azul Escuro para Azul Claro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 1rem;
}

.service-card p {
    color: #666666; /* Cinza Médio */
    line-height: 1.6;
}

/* Differentials Section */
.differentials {
    background: #FFFFFF; /* Branco */
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.differential-card {
    padding: 2.5rem;
    border: 1px solid #e2e8f0; /* Borda mais suave */
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra mais suave */
}

.differential-card:hover {
    border-color: #2A527A; /* Azul Escuro */
    transform: translateY(-5px);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: #2A527A; /* Azul Escuro */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.differential-icon i {
    font-size: 1.8rem;
    color: white;
}

.differential-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 1rem;
}

.differential-card p {
    color: #666666; /* Cinza Médio */
    line-height: 1.6;
}

/* Network Section */
.network {
    background: #f8fafc; /* Mantido para um fundo suave */
}

.network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.network-text h3 {
    font-size: 1.4rem;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 2rem;
    line-height: 1.6;
}

.network-list {
    list-style: none;
}

.network-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555; /* Mantido para contraste */
}

.network-list i {
    color: #2A527A; /* Azul Escuro */
    margin-right: 1rem;
    font-size: 1.2rem;
}

.network-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Sombra mais suave */
}

/* Results Section */
.results {
    background: #f8fafc; /* Fundo claro para um visual mais clean */
    color: #333333; /* Cor de texto escura */
    padding: 100px 0;
}

.results .section-header h2 {
    color: #2A527A; /* Azul Escuro */
}

.results .section-header .section-line {
    background: linear-gradient(90deg, #2A527A, #DC2626); /* Gradiente da marca */
}

.results-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
}

.results-highlight {
    display: flex;
    flex-direction: column; /* Altera para coluna para melhor empilhamento */
    align-items: center;
    gap: 1rem; /* Reduz o espaçamento */
    margin-bottom: 1rem;
    background: #FFFFFF; /* Fundo branco para o destaque */
    padding: 2rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra suave */
    max-width: 700px; /* Limita a largura para centralizar */
    width: 100%;
}

.highlight-number {
    font-size: 4.5rem; /* Reduz o tamanho da fonte */
    font-weight: 700;
    color: #2A527A; /* Azul Escuro para o número */
    margin-bottom: 0.5rem;
}

.highlight-text h3 {
    font-size: 1.8rem; /* Reduz o tamanho da fonte */
    color: #333333; /* Cor de texto escura */
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 1.1rem; /* Reduz o tamanho da fonte */
    color: #666666; /* Cinza Médio */
    line-height: 1.6;
    opacity: 1; /* Remove opacidade */
}

.results-description p {
    font-size: 1.1rem; /* Reduz o tamanho da fonte */
    opacity: 1; /* Remove opacidade */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: #666666; /* Cinza Médio */
}

/* Environmental Section */
.environmental {
    background: #FFFFFF; /* Branco */
}

.environmental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.environmental-text h3 {
    font-size: 1.4rem;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 2rem;
}

.environmental-list {
    list-style: none;
    margin-bottom: 2rem;
}

.environmental-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555; /* Mantido para contraste */
}

.environmental-list i {
    color: #3B82F6; /* Azul Claro */
    margin-right: 1rem;
    font-size: 1.2rem;
}

.environmental-text p {
    font-size: 1.1rem;
    color: #666666; /* Cinza Médio */
    line-height: 1.6;
}

.environmental-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Sombra mais suave */
}

/* Contact Section */
.contact {
    background: #f8fafc; /* Mantido para um fundo suave */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #FFFFFF; /* Branco */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Sombra mais suave */
    border: 1px solid #e2e8f0; /* Adicionado para um visual mais clean */
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #2A527A; /* Azul Escuro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2A527A; /* Azul Escuro */
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666666; /* Cinza Médio */
    font-size: 1rem;
}

.contact-form {
    background: #FFFFFF; /* Branco */
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra mais suave */
    border: 1px solid #e2e8f0; /* Adicionado para um visual mais clean */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0; /* Borda mais suave */
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2A527A; /* Azul Escuro */
}

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

/* Footer */
.footer {
    background: #2A527A; /* Azul Escuro */
    color: white;
    padding: 3rem 0;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6; /* Azul Claro */
}

.footer-logo h3 span {
    color: #DC2626; /* Vermelho */
}

.footer-logo p {
    color: #94a3b8; /* Mantido para contraste */
    margin-top: 0.5rem;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: #94a3b8; /* Mantido para contraste */
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header {
        padding: 15px 0; /* Aumentar o padding do header em mobile */
    }}5px; /* Ajustado para dar mais espaço abaixo do header */
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        padding-top: 80px; /* Adicionar padding superior para afastar do topo */
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .network-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .environmental-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-highlight {
        flex-direction: column;
        gap: 2rem;
    }

    .highlight-number {
        font-size: 4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}



    .logo-img {
        height: 80px; /* Aumentar um pouco o tamanho da logo no celular */
        margin-top: 0; /* Remover margem superior */
    }

    .nav-container {
        padding: 0 15px; /* Ajustar o padding lateral do nav-container */
    }




/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}





/* Estilos para a nova hero section em layout horizontal */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #f7f9fc;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text, .hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary {
    background-color: #2F4F6F;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    background-color: transparent;
    color: #2F4F6F;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #2F4F6F;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 80%;
        max-width: 260px;
    }
}
