/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis e Fontes */
:root {
    --primary-color: #000000;
    --secondary-color: #A9A9A9;
    --accent-color: #708090;
    --text-color: #333333;
    --light-text-color: #f4f4f4;
    --bg-color: #ffffff;
    --dark-bg-color: #f7f7f7;
    --font-family: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Layout e Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.section {
    padding: 80px 0;
    text-align: center;
}

.dark-bg {
    background-color: var(--dark-bg-color);
}

/* Tipografia */
h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
    font-weight: 300;
}

.intro-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--accent-color);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn.large {
    padding: 15px 40px;
    font-size: 1.1em;
}

.primary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: 2px solid var(--primary-color);
}

.primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

/* Cabeçalho */
.header {
    background-color: var(--bg-color);
    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;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
}

.logo {
    height: 80px;
}

.nav a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--accent-color);
}

.social-icon {
    width: 30px; /* Tamanho do ícone (ajuste conforme sua preferência) */
    height: 30px;
    vertical-align: middle; /* Alinhamento vertical */
    /* Você pode adicionar uma transição para um efeito hover, se desejar */
    transition: opacity 0.3s ease;
}

/* Efeito ao passar o mouse (opcional) */
.social-icon:hover {
    opacity: 0.7; /* Deixa o ícone um pouco transparente ao passar o mouse */
}

/* Seção Hero */
.hero {
    background: url('imagens/topoatacado.png') no-repeat center center/cover;
    color: var(--light-text-color);
    padding: 100px 0;
    text-align: left;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1, .hero p {
    color: var(--light-text-color);
}

/* Platform Intro */
.platform-intro {
    background-color: var(--dark-bg-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.platform-intro p {
    font-size: 1.1em;
    color: var(--text-color);
}

/* Faixa de Logos de Credibilidade */
.logo-strip {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.logo-strip h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.logos-grid img {
    max-height: 70px;
    width: auto;

}

.logos-grid img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .logo-strip h2 {
        font-size: 1.5em;
    }

    .logos-grid img {
        max-height: 40px;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.95em;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Brands Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.brand-card {
    background-color: var(--bg-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.brand-card p {
    font-size: 0.95em;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.brand-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9em;
    color: var(--accent-color);
}

.brand-card ul li:last-child {
    border-bottom: none;
}

/* Diferenciais */
.diferencial-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.diferencial-item {
    background-color: var(--dark-bg-color);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid var(--primary-color);
}

.diferencial-item h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.diferencial-item p {
    font-size: 0.95em;
    color: var(--text-color);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-text-color);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: var(--light-text-color);
    font-size: 2em;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--light-text-color);
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Rodapé */
.footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 40px 0 20px 0;
    text-align: left;
}

.footer h3 {
    color: var(--light-text-color);
    margin-bottom: 10px;
}

.footer p {
    color: var(--light-text-color);
    font-size: 0.9em;
}

.footer-link {
    color: var(--light-text-color);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    font-size: 0.75em;
    opacity: 0.7;
}


        .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: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
        }

        .whatsapp-icon {
            margin-top: 0;
        }
        
/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        margin-top: 15px;
    }

    .nav a {
        margin: 0 10px;
        display: inline-block;
        font-size: 0.9em;
    }

    .hero {
        padding: 100px 0;
    }

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

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

    .diferencial-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info, .social-links {
        text-align: center;
    }

    .cta-section {
        padding: 30px;
    }

    .cta-section h3 {
        font-size: 1.5em;
    }
}
