:root {
    /* Paleta de Cores baseada na imagem */
    --cor-azul: #0066cc;
    /* Azul vibrante */
    --cor-roxo: #8a2be2;
    /* Roxo vibrante */
    --cor-laranja: #ff6600;
    /* Laranja de destaque */
    --cor-amarelo: #ffcc00;
    /* Amarelo de destaque */

    --color-light: #f9f9f9;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
    --bg-color: #f5f7fa;
    --header-height: 160px;
    --cor-fundo: #f4f6f8;
    --cor-texto: #333;
    --cor-borda: #ddd;
    --bg-header: #fff;
    --bg-footer: #2c3e50;
    --texto-footer: #fff;

}

/* Pagina do Logista Interna carrega junto com a home */
main {
    width: 100%;
    max-width: 860px;
    margin: auto;
}

.capa-empresa {
    margin: auto;
    height: 220px;
}

.cover-image {
    width: 100%;
    margin: -60px -40px 40px 0px;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    display: block;
}

.capa-empresa h2 {
    font-size: 1.2rem;
}

.capa-empresa p {
    font-size: 1rem;
}

.imagens-produtos {
    display: flex;
    border-top: 2px solid #ddd;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
    /* Allow wrapping securely */
}

.imagens-produtos .imagem {
    /* 315px / 860px approx 36.6% */
    flex: 0 0 37%;
    max-width: 37%;
    height: 190px;
    padding: 5px 0 5px 5px;
}

.imagens-produtos .imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.imagens-produtos .detalhes {
    /* 540px / 860px approx 62.7% */
    flex: 1;
    /* Take remaining space */
    max-width: 63%;
    padding-left: 10px;
}

.detalhes h2 {
    margin: 5px 0 15px 0;
    text-align: left;
    padding-left: 15px;
    background-color: #ffcc0049;
    font-size: 1.5rem;
    border-radius: 8px;
    padding: 5px 15px;
}

.detalhes p {
    margin: 0 10px 0 15px;
    text-align: left;
    line-height: 1.5;
}

.localizacao {
    text-align: center;
    margin: auto;
}

.localizacao iframe {
    border: none;
    margin: auto;
    margin-bottom: 10px;
}

.localizacao h3 {
    background-color: #ddd;
    width: 100%;
    max-width: 860px;
    margin-bottom: 10px;
    text-align: center;
    padding: 8px 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: auto;
    margin-bottom: 10px;
}

.footer-empresas {
    display: flex;
    background-color: var(--bg-footer);
    justify-content: center;
    padding: 20px 0 10px 0;
    margin: auto;
}

.footer-banner-empresas {
    text-align: center;
    margin: 15px 0;
}

.redes-sociais-empresas {
    text-align: center;
    margin: auto;
}

.redes-sociais-empresas a {
    color: var(--texto-footer);
    margin: 0 10px 0 10px;
}

.contato-empresas {
    text-align: center;
    margin: auto;
    height: 90px;
    color: var(--texto-footer);
    margin-top: -2px;
}

.contato-empresas p {
    margin-bottom: 5px;
}

/* Responsive Styles */
/* Lower breakpoint to 576px so iframe (usually wider) keeps side-by-side */
@media (max-width: 576px) {

    main,
    .imagens-produtos,
    .localizacao h3 {
        width: 100%;
        padding: 0 10px;
    }

    .imagens-produtos {
        flex-direction: column;
    }

    .imagens-produtos .imagem {
        width: 100%;
        max-width: 100%;
        /* Reset max-width for stacking */
        flex: 0 0 100%;
        height: auto !important;
        padding: 0;
        text-align: center;
        background: #f9f9f9;
        margin-bottom: 10px;
    }

    .imagens-produtos .imagem img {
        width: auto !important;
        max-width: 100% !important;
        max-height: 250px !important;
        border-radius: 10px 10px 0 0;
    }

    .imagens-produtos .detalhes {
        width: 100%;
        max-width: 100%;
        padding: 0 0 15px 0;
    }

    .detalhes h2 {
        font-size: 1.2rem;
    }

    .cover-image {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: auto;
    }

    .capa-empresa {
        height: auto;
        margin-bottom: 20px;
    }

    /* Map Responsive */
    .map-iframe,
    .map-container iframe {
        width: 100% !important;
        height: 300px !important;
    }

    /* Footer */
    .footer-empresas {
        width: 100%;
        flex-direction: column;
    }

    /* Allow banner to show, but scale it */
    .footer-banner-empresas {
        display: block !important;
        width: 100%;
        overflow: hidden;
    }

    .footer-banner-empresas img {
        max-width: 100%;
        height: auto;
    }

    .redes-sociais-empresas {
        margin-bottom: 15px;
    }
}