/* ============================
   Reset e configurações globais
   ============================ */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Evita rolagem horizontal */
}

/* Garante que o body ocupe toda a altura da tela */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Layout flexível para colar o footer na base */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main ocupa o espaço restante entre header e footer */
main {
    flex: 1 0 auto;
}

/* Footer fixo na base, sem espaço extra */
footer.footer {
    flex-shrink: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Corpo da página */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 100vw;
    min-height: 100vh;
}

/* ============================
   Header (cabeçalho)
   ============================ */
header {
    background-color: #F8F9FA; /* Fundo claro */
    color: white; /* Texto branco */
    padding: 1em; /* Espaçamento interno */
    text-align: center; /* Centraliza texto */
}

/* ============================
   Container centralizador
   ============================ */
.container {
    width: 100%;
    max-width: 1200px; /* Limite de largura */
    margin: auto; /* Centraliza */
    box-sizing: border-box;
    padding: 0 1em; /* Espaçamento lateral */
}

/* ============================
   Footer (rodapé)
   ============================ */
footer {
    color: #fff; /* Texto branco */
    text-align: center;
    padding: 0.3em 0 0.2em 0; /* Espaçamento vertical menor */
    position: relative;
    width: 100%;
    /* background-image: url('../assets/footer5.png'); /* Imagem de fundo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixa imagem ao rolar */
    box-shadow: 0 -2px 16px rgba(0,0,0,0.12); /* Sombra superior */
    overflow: hidden;
}

/* Overlay escuro para contraste no footer */
footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-overlay);
    z-index: 0;
}

/* ============================
   Aviso de cookies
   ============================ */
.cookie-consent {
    background-color: #f1f1f1; /* Fundo claro */
    padding: 1em;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000; /* Sobrepõe outros elementos */
}

/* ============================
   Header fixo no topo
   ============================ */
.header-top {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha à esquerda */
    padding: 0.5em 2em;
    background: #fff; /* Fundo branco */
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* Sombra inferior */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
}

/* Logo no header */
.header-logo {
    display: flex;
    align-items: center;
    gap: 18px; /* Espaço entre logo e texto */
    margin-right: 32px; /* Espaço entre logo e menu */
}

/* Imagem da logo */
.header-logo img {
    height: 64px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10); /* Sombra leve */
    background: #fff;
    padding: 4px;
    transition: transform 0.2s; /* Efeito ao passar mouse */
}

/* Efeito hover na logo */
.header-logo img:hover {
    transform: scale(1.07);
}

/* ============================
   Menu principal
   ============================ */
.menu-principal {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07); /* Sombra leve */
    padding: 0.1em 0.5em;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Alinha à esquerda */
    margin-left: 0;
    position: relative;
}

/* Botão do menu responsivo */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: #C01F25;
    cursor: pointer;
    margin-right: 12px;
}

/* Lista do menu */
.menu-principal ul {
    display: flex;
    gap: 28px;
    background: none;
    box-shadow: none;
    justify-content: flex-start;
    width: 100%;
}

/* Item do menu */
.menu-principal li {
    display: inline;
}

/* Link do menu */
.menu-principal a {
    display: block;
    padding: 7px 14px; /* Espaçamento interno */
    color: #333; /* Cor padrão */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.98em; /* Fonte menor */
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* Efeito hover e ativo no menu */
.menu-principal a:hover,
.menu-principal a.ativo {
    background: #C01F25; /* Fundo vermelho */
    color: #fff; /* Texto branco */
    box-shadow: 0 2px 8px rgba(192,31,37,0.12); /* Sombra vermelha */
}

.menu-principal .btn-trabalhe {
    margin-left: auto;
    background: #FFD700;
    color: #C01F25;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 22px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.10);
    transition: background 0.2s, color 0.2s;
}

.menu-principal .btn-trabalhe:hover {
    background: #C01F25;
    color: #FFD700;
}

/* ============================
   Footer flexível (colunas)
   ============================ */
.footer-flex {
    display: flex;
    justify-content: space-between;
    gap: 24px; /* Menor distância entre colunas */
    flex-wrap: wrap;
    padding: 0.3em 0 0.1em 0; /* Espaçamento interno menor */
    position: relative;
    z-index: 1;
}

/* Colunas do footer */
.footer-col {
    flex: 1 1 220px;
    min-width: 180px;
    padding: 0 4px; /* Menos padding lateral */
    margin-bottom: 8px; /* Menos espaço entre colunas em mobile */
}

/* Título das colunas do footer */
.footer-col h4 {
    margin-bottom: 0.7em;
    font-size: var(--font-size-lg);
    color: var(--color-white);
    letter-spacing: 1px;
    font-weight: var(--font-weight-bold);
}

/* Endereço no footer */
.footer-col.endereco p,
.footer-col.endereco strong {
    color: #fff;
    font-size: 1em;
    margin: 0.3em 0;
}

/* Listas de links e redes sociais no footer */
.footer-links ul,
.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Itens das listas do footer */
.footer-links ul li,
.footer-social ul li {
    margin-bottom: 0.7em;
}

/* Links do footer */
.footer-links a,
.footer-social a {
    color: #edebe5; /* Dourado para alto contraste */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

/* Efeito hover nos links do footer */
.footer-links a:hover,
.footer-social a:hover {
    color: #FFD700; /* Dourado (marca Radil) */
    text-decoration: underline;
    background: #C01F25;
    border-radius: 6px;
    padding: 2px 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Ícones das redes sociais */
.footer-social a i {
    margin-right: 8px;
    font-size: 1.3em;
    vertical-align: middle;
    transition: color 0.2s;
}

/* Informações finais do footer */
.footer-info {
    margin-top: 0.3em;
    font-size: 1em;
    color: #fff; /* Alterado para branco */
    position: relative;
    z-index: 1;
    opacity: 0.85;
    letter-spacing: 0.5px;
    font-weight: 500;
    padding-bottom: 0.4em;
}

/* ============================
   Consentimento de cookies
   ============================ */
#cookie-consent {
    background-color: rgba(255, 255, 255, 0.41); /* Fundo branco translúcido */
    color: #fffdfd;
    padding: 0.7em;
    border-radius: 6px;
    margin: 1em auto 0 auto;
    max-width: 500px;
    font-size: 0.95em;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Botão do consentimento de cookies */
#cookie-consent button {
    background: #C01F25; /* Vermelho */
    color: #fff;
    border: none;
    padding: 0.5em 1.2em;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 1em;
    font-weight: bold;
    transition: background 0.2s;
}

#cookie-consent button {
    margin: 0 6px;
}
#cookie-consent #decline-cookies {
    background: #bbb;
    color: #232526;
}
#cookie-consent #decline-cookies:hover {
    background: #888;
    color: #fff;
}

/* Efeito hover no botão de cookies */
#cookie-consent button:hover {
    background: #C01F25
}

/* ============================
   Conteúdo principal e banner
   ============================ */
.main-content,
.banner {
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animação do banner */
@keyframes bannerMove {
    0% {
        background-position: top center;
    }
    100% {
        background-position: bottom center;
    }
}

/* ============================
   Responsividade
   ============================ */
/* Tablets */
@media (max-width: 1200px) {
    .container {
        max-width: 100vw;
        padding: 0 0.5em;
    }
}

/* Celulares grandes */
@media (max-width: 900px) {
    .header-top {
        flex-direction: column;
        padding: 0.5em 0.5em;
    }
    .main-content,
    .banner {
        height: 60vh;
        min-height: 300px;
    }
    .main-flex {
        flex-direction: column;
        gap: 18px;
    }
    .main-img {
        max-width: 80vw;
    }
    .menu-toggle {
        display: block;
    }
    .menu-principal ul {
        display: none;
        position: absolute;
        top: 48px;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        width: 200px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.07);
        border-radius: 0 0 12px 12px;
        z-index: 1001;
    }
    .menu-principal ul.menu-open {
        display: flex;
    }
    .menu-principal ul li {
        border-bottom: 1px solid #eee;
        text-align: left;
    }
    .menu-principal ul li:last-child {
        border-bottom: none;
    }
}

/* Celulares pequenos */
@media (max-width: 600px) {
    .main-content,
    .banner {
        height: 40vh;
        min-height: 150px;
    }
    .container {
        padding: 0 0.2em;
    }
}

/* ============================
   Flexbox principal da página
   ============================ */
.main-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    width: 100%;
    padding: 32px 0;
}

/* Coluna da imagem */
.main-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 320px;
}

/* Imagem responsiva - aumentada */
.main-img {
    max-width: 420px;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0,255,231,0.10);
    border: 2px solid #f3f6f600;
    background: rgba(255,255,255,0.04);
    transition: max-width 0.3s, box-shadow 0.3s;
}

/* Coluna dos textos */
.main-textos {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 56px 48px;
    color: #232526;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-textos::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background-size: 300% 300%;
    border-radius: 32px;
    z-index: -1;
    animation: gradientMove 6s ease infinite;
    opacity: 0.6;
}

.main-textos::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.1); }
}

.main-textos:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(192,31,37,0.25),
        0 12px 40px rgba(255,215,0,0.2),
        inset 0 2px 4px rgba(255,255,255,1),
        inset 0 -2px 4px rgba(0,0,0,0.08);
}

.main-textos:hover::before {
    opacity: 1;
    animation-duration: 3s;
}

/* H1 - Título principal simples e profissional */
.main-textos h1 {
    text-align: left;
    font-size: 3.5em;
    font-weight: 800;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 0.6s ease-out;
}

/* H2 - Subtítulo elegante */
.main-textos h2 {
    text-align: left;
    font-size: 1.35em;
    color: #2c3e50;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.6;
    
}

/* Parágrafo - Texto limpo e legível */
.main-textos p {
    text-align: left;
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin: 0 0 32px 0;
    font-weight: 400;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* Responsivo para telas menores - ajustes específicos para .main-textos */
@media (max-width: 900px) {
    .main-flex {
        flex-direction: column;
        gap: 28px;
        padding: 18px 0;
    }
    .main-img {
        max-width: 95vw;
    }

    .main-textos {
        padding: 40px 28px;
        align-items: center;
        border-radius: 24px;
    }

    .main-textos::after {
        right: -50px;
        width: 200px;
        height: 200px;
    }

    .main-textos h1 {
        font-size: 2.5em;
        text-align: center;
        letter-spacing: -0.5px;
    }

    .main-textos h2 {
        font-size: 1.15em;
        text-align: center;
        margin: 0 0 16px 0;
    }

    .main-textos p {
        text-align: center;
        font-size: 1em;
        line-height: 1.7;
        margin: 0 0 28px 0;
    }

  /* CSS PAGINA GALERIA/PRODUTOS */

    /* Primary CTA button - desktop/default styles (keeps original visual identity) */
.main-textos .main-btn {
    align-self: flex-start;
    animation: fadeInUp 0.8s ease-out 0.6s backwards, pulse 2s ease-in-out 2s infinite;
    position: relative;
    overflow: hidden;
    padding: 16px 40px;
    font-size: 1.15em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, #C01F25 0%, #F71904 100%);
    box-shadow:
        0 8px 24px rgba(192,31,37,0.3),
        0 4px 12px rgba(247,25,4,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

/* keep the hover/interaction ripple pseudo element initial state;
   continuation of this rule appears immediately after this block in the file */
.main-textos .main-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.main-textos .main-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 12px 32px rgba(192,31,37,0.4),
        0 6px 16px rgba(247,25,4,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #F71904 0%, #C01F25 100%);
}

.main-textos .main-btn:hover::before {
    width: 400px;
    height: 400px;
}

.main-textos .main-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

}

/* Responsivo para telas menores */
@media (max-width: 900px) {
    .main-flex {
        flex-direction: column;
        gap: 28px;
        padding: 18px 0;
    }
    .main-img {
        max-width: 95vw;
    }

    .main-textos {
        padding: 32px 24px;
        align-items: center;
    }

    .main-textos h1 {
        font-size: 2.2em;
        text-align: center;
    }

    .main-textos h2 {
        font-size: 1.1em;
        text-align: center;
    }

    .main-textos p {
        text-align: center;
        font-size: 0.95em;
    }

    .main-textos .main-btn {
        align-self: center;
    }

  /* CSS PAGINA GALERIA/PRODUTOS */



}

/* Formulário de contato */
.contato-section {
    max-width: 680px;
    margin: 60px auto 48px auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 32px;
    box-shadow:
        0 20px 60px rgba(192, 31, 37, 0.12),
        0 8px 32px rgba(192, 31, 37, 0.08),
        inset 0 2px 4px rgba(255,255,255,0.9);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(192, 31, 37, 0.1);
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #C01F25 0%, #FFD700 50%, #8B1420 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.contato-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 31, 37, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contato-section:hover {
    box-shadow:
        0 20px 60px rgba(192, 31, 37, 0.12),
        0 8px 32px rgba(192, 31, 37, 0.08),
        inset 0 2px 4px rgba(255,255,255,1);
}

.contato-section h2 {
    text-align: center;
    font-size: 3em;
    font-weight: 900;
    margin: 0 0 16px 0;
    letter-spacing: -1px;
    color: #C01F25;
    text-shadow:
        0 2px 8px rgba(192, 31, 37, 0.15),
        0 4px 16px rgba(0,0,0,0.08);
    position: relative;
}

.contato-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #C01F25 0%, #FFD700 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(192, 31, 37, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contato-form {
    margin-top: 40px;
}

.contato-form .form-group {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.contato-form label {
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contato-form label::before {
    content: '●';
    color: #C01F25;
    font-size: 0.8em;
}

.contato-form input,
.contato-form textarea {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-size: 1.05em;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #C01F25;
    outline: none;
    background: #FFF8E1;
    box-shadow:
        0 4px 16px rgba(192, 31, 37, 0.2),
        0 0 0 4px rgba(192, 31, 37, 0.1);
}

.contato-form input:focus + label,
.contato-form textarea:focus + label {
    color: #C01F25;
}

.contato-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-enviar {
    background: #C01F25;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    width: auto;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 24px auto 0;
    display: block;
}

.btn-enviar:hover {
    background: #FFD700;
    color: #C01F25;
}

.btn-enviar:active {
    background: #8B1420;
}

/* Estilo para a seção de agradecimento */
.obrigado-section {
    max-width: 440px;
    margin: 60px auto 48px auto;
    background: linear-gradient(120deg, #FFF8E1 60%, #FFE0D5 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.10), 0 1.5px 8px rgba(0,0,0,0.07);
    padding: 40px 28px 32px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.obrigado-section h2 {
    color: #C01F25;
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,191,174,0.10);
}

.obrigado-section p {
    color: #232526;
    font-size: 1.18em;
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-voltar {
    display: inline-block;
    background: #C01F25;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(247,25,4,0.12);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-voltar:hover {
    background: #C01F25;
    box-shadow: 0 4px 16px rgba(247,25,4,0.18);
}

/* Responsivo */
@media (max-width: 600px) {
    .contato-section {
        padding: 40px 24px;
        margin: 40px 20px;
        border-radius: 24px;
    }

    .contato-section h2 {
        font-size: 2.2em;
        text-shadow:
            1px 1px 0px #FFD700,
            2px 2px 0px rgba(192,31,37,0.2),
            4px 4px 15px rgba(0,0,0,0.1);
    }

    .contato-section h2::after {
        width: 80px;
        height: 4px;
    }

    .contato-form {
        margin-top: 32px;
    }

    .contato-form .form-group {
        margin-bottom: 24px;
    }

    .contato-form label {
        font-size: 1em;
    }

    .contato-form input,
    .contato-form textarea {
        padding: 14px 16px;
        font-size: 1em;
        border-radius: 12px;
    }

    .btn-enviar {
        padding: 16px 0;
        font-size: 1.1em;
        letter-spacing: 1.5px;
    }

    .obrigado-section {
        padding: 18px 6px 18px 6px;
        max-width: 98vw;
    }
    .obrigado-section h2 {
        font-size: 1.3em;
    }
    .obrigado-section p {
        font-size: 1em;
    }
}
/* ============================
   Política de Privacidade - Seções
   ============================ */

   main {
    background: linear-gradient(120deg, #f8fafc 60%, #fae3e0 100%);
    min-height: 70vh;
    padding: 40px 0 32px 0;
   }

.introducao-section,
.coleta-section,
.uso-section,
.protecao-section,
.direitos-section {
    max-width: 700px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.2s;
}
.introducao-section:hover,
.coleta-section:hover,
.uso-section:hover,
.protecao-section:hover,
.direitos-section:hover {
    box-shadow: 0 4px 32px rgba(0,191,174,0.10);
}

.introducao-section h2,
.coleta-section h2,
.uso-section h2,
.protecao-section h2,
.direitos-section h2 {
    text-align: center;
    color: #C01F25;
    font-size: 1.7em;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}

.introducao-section p,
.coleta-section p,
.uso-section p,
.protecao-section p,
.direitos-section p {
    color: #232526;
    font-size: 1.13em;
    margin-bottom: 0;
    line-height: 1.7;
    text-align: justify;
}

/* ============================
   Responsividade das seções
   ============================ */
@media (max-width: 900px) {
    .introducao-section,
    .coleta-section,
    .uso-section,
    .protecao-section,
    .direitos-section {
        max-width: 96vw;
        padding: 18px 8px 14px 8px;
    }
        main {
        padding: 18px 0 12px 0;
    }
        .introducao-section h2,
    .coleta-section h2,
    .uso-section h2,
    .protecao-section h2,
    .direitos-section h2,
    .introducao-section h2,
    .coleta-section h2,
    .uso-section h2,
    .protecao-section h2,
    .direitos-section h2 {
        font-size: 1.2em;
        padding: 0;
    }

    .introducao-section p,
    .coleta-section p,
    .uso-section p,
    .protecao-section p,
    .direitos-section p {
        font-size: 1em;
    }

}

/* ============================
   Botão Principal
   ============================ */
.main-btn {
    display: inline-block;
    margin-top: 1.5em;
    padding: 12px 32px;
    background: #F71904;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(247,25,4,0.12);
    transition: background 0.2s, box-shadow 0.2s;
}
.main-btn:hover {
    background: #d31200;
    box-shadow: 0 4px 16px rgba(247,25,4,0.18);
}

/* ============================
   Fim do CSS
   ============================ */
.main-img, .main-textos {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.main-img.visible, .main-textos.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   Destaques
   ============================ */
.destaques {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 48px 0;
}
.card-destaque {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 28px 22px;
    text-align: center;
    max-width: 260px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-destaque:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(192, 31, 37, 0.13);
}
.card-destaque i {
    font-size: 2.2em;
    color: #C01F25;
    margin-bottom: 12px;
}

/* Agrupamento das imagens ao lado do texto principal */
.img-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Imagem principal maior que as outras */
.img-principal {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 0 32px 0 rgba(255, 215, 0, 0.25), 0 8px 32px rgba(247,25,4,0.10);
    border: 3px solid #FFD700; /* amarelo ouro */
    background: rgba(255,255,255,0.04);
    margin-bottom: 10px;
    transition: box-shadow 0.3s, border 0.3s, width 0.3s, height 0.3s;
}

/* Imagens pequenas com tamanho reduzido */
.img-mini {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 0 32px 0 rgba(255, 215, 0, 0.18), 0 2px 8px rgba(247,25,4,0.10);
    border: 3px solid #FFD700;
    background: rgba(255,255,255,0.08);
    margin-bottom: 0;
    transition: box-shadow 0.3s, border 0.3s, width 0.3s, height 0.3s;
}

/* Efeito hover igual para ambas */
.img-principal:hover,
.img-mini-1:hover,
.img-mini-2:hover,
.img-mini-3:hover {
    box-shadow: 0 0 48px 8px #FFD700, 0 8px 32px rgba(247,25,4,0.15);
    border: 3px solid #F71904;
}

/* Efeito de profundidade aprimorado para todas as imagens principais e miniaturas */
.img-principal,
.img-mini,
.img-mini-1,
.img-mini-2,
.img-mini-3 {
    box-shadow:
        0 8px 32px 0 rgba(247,25,4,0.10),      /* sombra vermelha suave */
        0 16px 40px 0 rgba(255,215,0,0.15),    /* sombra dourada mais distante */
        0 2px 8px 0 rgba(0,0,0,0.10);          /* sombra preta leve */
    transition: box-shadow 0.4s, border 0.3s;
}

.img-principal:hover,
.img-mini:hover,
.img-mini-1:hover,
.img-mini-2:hover,
.img-mini-3:hover {
    box-shadow:
        0 12px 48px 8px #FFD700,               /* sombra dourada intensa */
        0 8px 32px 0 rgba(247,25,4,0.18),      /* sombra vermelha mais forte */
        0 4px 16px 0 rgba(0,0,0,0.15);         /* sombra preta mais marcada */
    border: 3px solid #F71904;
}

/* Responsivo */
@media (max-width: 900px) {
    .img-principal {
        width: 180px;
        height: 180px;
    }
    .img-mini {
        width: 70px;
        height: 70px;
    }
}

.img-mini-1{
    margin-right: 12px;
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.08);
    transition: box-shadow 0.3s, border 0.3s;
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 0 32px 0 rgba(255, 215, 0, 0.25), 0 8px 32px rgba(247,25,4,0.10);
    border: 3px solid #FFD700; /* amarelo ouro */
    background: rgba(255,255,255,0.04);
    margin-bottom: 10px;
    transition: box-shadow 0.3s, border 0.3s, width 0.3s, height 0.3s;

}

.img-mini-2{
    margin-right: 12px;
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.08);
    transition: box-shadow 0.3s, border 0.3s;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 0 32px 0 rgba(255, 215, 0, 0.25), 0 8px 32px rgba(247,25,4,0.10);
    border: 3px solid #FFD700; /* amarelo ouro */
    background: rgba(255,255,255,0.04);
    margin-bottom: 10px;
    transition: box-shadow 0.3s, border 0.3s, width 0.3s, height 0.3s;
}

.img-mini-3{
    margin-right: 12px;
    border: 2px solid #e0e0e0;
    background: rgba(255,255,255,0.08);
    transition: box-shadow 0.3s, border 0.3s;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 0 32px 0 rgba(255, 215, 0, 0.25), 0 8px 32px rgba(247,25,4,0.10);
    border: 3px solid #FFD700; /* amarelo ouro */
    background: rgba(255,255,255,0.04);
    margin-bottom: 10px;
    transition: box-shadow 0.3s, border 0.3s, width 0.3s, height 0.3s;
}

/* ============================
   Controle do Carrossel
   ============================ */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 12px;
}
.carousel-btn {
    background: #FFD700;
    color: #C01F25;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(247,25,4,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover {
    background: #C01F25;
    color: #FFD700;
    box-shadow: 0 4px 16px rgba(247,25,4,0.18);
}

/* ============================
   Efeito de rastro de fumaça dourado/vermelho
   ============================ */
.smoke-trail {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(16px); /* Mais blur para parecer mais fumaça */
    z-index: 9999;
    animation: smoke-fade 1.1s linear forwards;
    mix-blend-mode: lighten;
}

/* Aumenta o tamanho do rastro */
/* O tamanho do rastro é definido via JS, mas aumente o valor mínimo no JS também! */

/* Animação mais longa e maior expansão */
@keyframes smoke-fade {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(3.5) translateY(-32px);
        opacity: 0;
    }
}

/* Oculta o cursor do mouse na página */
/*body, html {
    cursor: none !important;
}*/

/* Oculta o cursor apenas na página inicial DESATIVADO*/
/*body.hide-cursor, body.hide-cursor * {
    cursor: none !important;
}*/

.painel-produtos {
    background: linear-gradient(120deg, #FFD700 60%);
    color: #fff;
}



.painel-cuidados {
    background: linear-gradient(120deg, #C01F25 60%);
    color: #232526;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}

.lead,
.lead-painel, p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
}

.lead-painel h3 {
    color: #C01F25;
}

.historia-section {
    max-width: 720px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.2s;
}

.titulo-historia {
    text-align: center;
    color: #C01F25;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}

.historia-texto,
.historia-texto-2 p {
    color: #232526;
    font-size: 1.13em;
    margin-bottom: 0;
    line-height: 2;
    text-align: justify;
    text-align: justify;
}

@media (max-width: 900px) {
    .historia-section {
        max-width: 96vw;
        padding: 18px 8px 14px 8px;
    }
        main {
        padding: 18px 0 12px 0;
    }
        .titulo-historia {
        font-size: 1.8em;
        padding: 0;
    }

    .historia-texto {
        font-size: 1em;
    }

}

.historia-texto-2 {
    color: #232526;
    font-size: 1.13em;
    margin-bottom: 0;
    line-height: 2;
    text-align: justify;
    text-align: justify;
    max-width: 720px;
    margin: 32px auto 48px auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.2s;
}

/* Tabela de produção aprimorada e centralizada */
.tabela-producao {
    width: 90%;
    max-width: 700px;
    margin: 32px auto 24px auto; /* Centraliza horizontalmente */
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(192,31,37,0.10), 0 1.5px 8px rgba(255,215,0,0.07);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.2s;
    display: table;
}

.tabela-producao-titulo {
   text-align: left;
    color: #C01F25;
    font-size: 2em;
    font-weight: 700;
    margin: 32px auto 18px auto;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

/* Feedback do formulário de contato */
.form-feedback {
    margin-top: 12px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
}
.form-feedback.success {
    display: block;
    background: #e6fffa;
    color: #06645a;
    border: 1px solid rgba(6,100,90,0.08);
}
.form-feedback.error {
    display: block;
    background: #fff1f2;
    color: #7a1a1a;
    border: 1px solid rgba(122,26,26,0.06);
}

/* ============================
   Política de Privacidade - Seções
   ============================ */
.tabela-producao tr:nth-child(even) td {
    background: #f3f3f3;
}

.tabela-producao tr:hover td {
    background: #FFF3E0;
    color: #C01F25;
}

@media (max-width: 700px) {
    .tabela-producao {
        width: 99vw;
        font-size: 0.95em;
    }
    .tabela-producao th,
    .tabela-producao td {
        padding: 8px 4px;
    }
}

.tabela-producao-titulo {
   text-align: left;
    color: #C01F25;
    font-size: 2em;
    font-weight: 700;
    margin: 32px auto 18px auto;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(191,13,0,0.10);
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

/* Padronização da fonte do footer */
footer,
.footer,
.footer-flex,
.footer-col,
.footer-links,
.footer-social,
.footer-info {
    font-size: 1em;
    font-style: normal !important;
}

/* Fonte padrão global para todo o site */
html, body, input, textarea, button,
h1, h2, h3, h4, h5, h6,
p, span, a, ul, ol, li, th, td, label, select, option,
header, nav, main, section, article, aside, footer,
.container, .main-textos, .lead, .lead-painel, .historia-section, .historia-texto, .historia-texto-2,
.tabela-producao, .painel-produtos, .painel-cuidados,
.footer, .footer-flex, .footer-col, .footer-links, .footer-social, .footer-info {
    font-family: 'Montserrat', Arial, sans-serif !important;
}

/* Modal de cookies fixo na parte baixa da tela, largura total */
.cookie-modal {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100vw;
    /*height: 100px;*/
    background: rgba(0,0,0,0.45);
    z-index: 99999;
    justify-content: center;
    align-items: end;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
}

/* Conteúdo do modal ajustado para a base */
.cookie-modal-content,
.cookie-modal-window {
    background: #fff;
    color: #232526;
    /*border-radius: 16px 16px 0 0;*/
    box-shadow: 0 -2px 12px rgba(0,0,0,0.10);
    padding: 24px 28px 18px 28px;
    max-width: 600px;
    width: 90vw;
    /*height: 810px;8*/
    margin-bottom: 18px;
    text-align: left;
    position: relative;
    animation: modalFadeIn 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(40px);}
    to   { opacity: 1; transform: translateY(0);}
}

/* Switch liga/desliga para gerenciamento de cookies */
.switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 1em;
    color: #232526;
    gap: 18px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    border-radius: 24px;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: .3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.switch input:checked + .slider {
    background-color: #FFD700;
}

.switch input:checked + .slider:before {
    transform: translateX(22px);
    background-color: #C01F25;
}

/* Modal janela centralizada e organizada */
.cookie-modal-window {
    background: #fff;
    color: #232526;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 32px 28px 24px 28px;
    max-width: 420px;
    width: 96vw;
    text-align: left;
    position: relative;
    animation: modalFadeIn 0.4s;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cookie-modal-title {
    color: #C01F25;
    font-size: 1.45em;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}

.cookie-modal-intro {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.5;
}

.cookie-option {
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    padding: 14px 12px;
    margin-bottom: 16px;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cookie-option-title {
    font-weight: 600;
    font-size: 1.08em;
    color: #C01F25;
}

.cookie-desc {
    font-size: 0.97em;
    color: #555;
    margin-top: 2px;
    line-height: 1.5;
}

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-modal-link {
    margin-top: 18px;
    text-align: left;
    font-size: 0.97em;
}

.cookie-modal-link a {
    color: #C01F25;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6em;
    color: #C01F25;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2;
}
.cookie-modal-close:hover {
    color: #F71904;
}

/* Modal centralizado na tela */
.cookie-modal {
    display: none;
    position: fixed;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95);}
    to   { opacity: 1; transform: scale(1);}
}

/* Exemplo para box-shadow, border-radius, linear-gradient e flex */
.box {
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background: -webkit-linear-gradient(120deg, #f8fafc 60%, #fae3e0 100%);
    background: linear-gradient(120deg, #f8fafc 60%, #fae3e0 100%);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/* Bloco de destaque de produto (featurette) com nomenclatura padronizada */
.mvv-destaque {
    background-color: #f7f7f7;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(192,31,37,0.08);
    padding: 32px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.mvv-destaque:hover {
    box-shadow: 0 8px 32px rgba(192,31,37,0.16);
    transform: translateY(-2px) scale(1.01);
}

.mvv-destaque-titulo {
    font-size: 2.1em;
    font-weight: 700;
    color: #C01F25;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.mvv-destaque-titulo .mvv-destaque-muted {
    color: #FFD700 !important;
    font-weight: 600;
}

.missao-descricao {
    font-size: 1.15em;
    color: #232526;
    margin-bottom: 0;
    line-height: 1.6;
}

.mvv-destaque-img {
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mvv-destaque-img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(192,31,37,0.18);
}

/* Responsivo */
@media (max-width: 900px) {
    .mvv-destaque {
        flex-direction: column;
        padding: 18px 8px;
    }
    .mvv-destaque-titulo {
        font-size: 1.3em;
        margin-bottom: 12px;
    }
    .mvv-destaque-img {
        margin-bottom: 12px;
        width: 100%;
        height: auto;
        
    }
}

/* Estilização moderna para valores-lista */
.valores-lista {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.valores-lista li {
   
    color: #090202;
    font-weight: 600;
    font-size: 1.08em;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(192,31,37,0.07);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.valores-lista li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #C01F25;
    font-size: 1.2em;
    margin-right: 12px;
    display: inline-block;
}



@media (max-width: 900px) {
    .valores-lista li {
        font-size: 1em;
        padding: 10px 12px;
    }
}


/* Adicione ao style.css para estilizar o bloco conjunto */
.section-avicultura-postura {
    background: linear-gradient(120deg, #fffbe6 60%, #fae3e0 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(192,31,37,0.08);
    padding: 32px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.section-avicultura-postura .img-postura {
    max-width: 140px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-right: 24px;
    margin-bottom: 0;
    float: left;
    display: block;
}

.section-avicultura-postura .mvv-destaque-titulo {
    font-size: 1.7em;
    font-weight: 700;
    color: #C01F25;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.section-avicultura-postura p {
    font-size: 1.08em;
    color: #232526;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .section-avicultura-postura {
        flex-direction: column;
        padding: 18px 8px;
    }
    .section-avicultura-postura .img-postura {
        float: none;
        display: block;
        margin: 0 auto 12px auto;
        max-width: 100px;
    }
    .section-avicultura-postura .mvv-destaque-titulo {
        font-size: 1.2em;
        margin-bottom: 12px;
    }
}

