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

/* Variáveis e Fontes */
:root {
    --primary-color: #000000; /* Preto para um visual clean e sofisticado */
    --secondary-color: #A9A9A9; /* Cinza médio para botões secundários */
    --accent-color: #708090; /* Cinza ardósia para detalhes */
    --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;
}

.small-text {
    font-size: 0.8em;
    color: var(--accent-color);
    margin-top: 10px;
}

/* 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;
}

.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 {
    height: 80px; /* Ajuste o tamanho do logo */
}

.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/sandaliaTopo.png') no-repeat center center/cover; /* Usando uma imagem de fábrica como fundo */
    color: var(--light-text-color);
    padding: 100px 0;
    text-align: left;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay escuro para melhor leitura */
}

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

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

/* Grid de Conteúdo (Para seções Sobre e Atacado) */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.reverse-grid {
    grid-template-areas: "image text";
}

.reverse-grid .text-content {
    grid-area: text;
}

.reverse-grid .image-content {
    grid-area: image;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.full-width-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Lista de Marcas */
.text-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.text-content ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-weight: 400;
}

.text-content ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Diferenciais */
.diferenciais-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-bottom: 40px;
}

.diferencial-item {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.diferencial-item h3 {
    color: var(--primary-color);
}

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

/* 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-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;
    }

    .hero {
        padding: 100px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .content-grid .image-content {
        order: -1; /* Coloca a imagem acima do texto em telas menores */
    }

    .reverse-grid {
        grid-template-areas: none;
    }

    .reverse-grid .text-content, .reverse-grid .image-content {
        grid-area: auto;
    }

    .diferenciais-grid {
        flex-direction: column;
    }

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

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

    .text-content ul {
        text-align: left;
        margin: 0 auto;
        max-width: 300px;
    }
}
