/* =================================================================
   PROLEITE AGRO - ESTILOS OTIMIZADOS E REORGANIZADOS - V6.9
   ================================================================= */

/* Variáveis da Marca */
:root {
    --verde-escuro: #0A5926;
    --amarelo-claro: #F2CB05;
    --amarelo-ouro: #F2B705;
    --laranja: #D98E04;
    --preto: #0D0D0D;
    --cinza-claro: #f8fafc;
    --cinza-medio: #e2e8f0;
    --branco: #ffffff;
    --sombra-leve: 0 4px 15px rgba(0, 0, 0, 0.08);
    --sombra-media: 0 8px 25px rgba(0, 0, 0, 0.12);
    --sombra-forte: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Reset Global */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Otimizações de Performance */
* {
    will-change: auto;
}

/* Elementos que se movem durante scroll */
.header, .back-to-top, .nav-menu {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Hero subtitle removido para melhor layout */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--preto);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--preto);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* Botões */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--verde-escuro), var(--laranja));
    color: var(--branco);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-media);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja));
    color: var(--preto);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 183, 5, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--amarelo-ouro), var(--laranja));
    color: var(--preto);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-media);
}

/* =================================================================
   HEADER E NAVEGAÇÃO
   ================================================================= */
.header {
    background: rgba(255,255,255,0.98);
    -webkit-backdrop-filter: saturate(1.2) blur(6px);
    backdrop-filter: saturate(1.2) blur(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.navbar {
    padding: 1.5rem 0;
    min-height: 80px; /* Garantir altura mínima consistente */
}

/* Compatibilidade com navegadores para header */
.header {
    /* Prefixos para compatibilidade */
    -webkit-backdrop-filter: saturate(1.2) blur(6px);
    -moz-backdrop-filter: saturate(1.2) blur(6px);
    backdrop-filter: saturate(1.2) blur(6px);
    
    /* Garantir que o header sempre fique por cima */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

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

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--preto);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: var(--branco);
    background: linear-gradient(135deg, var(--verde-escuro), var(--amarelo-ouro));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 89, 38, 0.3);
    border-color: var(--verde-escuro);
    background: rgba(10, 89, 38, 0.1);
}

/* Dropdown removido - menu simplificado */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #334155;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 6rem 1rem 1rem;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    z-index: 1500;
    animation: slideInFromTop 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-menu.mobile-active li {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 300px;
}

.nav-menu.mobile-active li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
    position: relative;
    width: 100%;
}

/* Botão de fechar menu mobile */
.nav-menu.mobile-active .mobile-close-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1600;
    display: block !important;
}

.close-menu-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

.close-menu-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
}

.close-menu-btn:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

/* Efeito shimmer removido para evitar crull */

.nav-menu.mobile-active li:nth-child(2) a { animation-delay: 0.1s; }
.nav-menu.mobile-active li:nth-child(3) a { animation-delay: 0.2s; }
.nav-menu.mobile-active li:nth-child(4) a { animation-delay: 0.3s; }
.nav-menu.mobile-active li:nth-child(5) a { animation-delay: 0.4s; }
.nav-menu.mobile-active li:nth-child(6) a { animation-delay: 0.5s; }
.nav-menu.mobile-active li:nth-child(7) a { animation-delay: 0.6s; }

/* Link de produtos padronizado */
.nav-menu.mobile-active .produtos-link {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-menu.mobile-active .produtos-link::before {
    content: '✨';
    margin-right: 0.5rem;
    font-size: 0.9rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.nav-menu.mobile-active .produtos-link:hover {
    background: rgba(242, 203, 5, 0.1);
    border-color: rgba(242, 203, 5, 0.3);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



.nav-menu.mobile-active li a:hover {
    background: rgba(242, 203, 5, 0.1);
    border-color: rgba(242, 203, 5, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #333;
}

.nav-menu.mobile-active li a:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.nav-menu.mobile-active li:last-child a {
    margin-bottom: 0;
}

.main-content {
    margin-top: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Menu mobile responsivo */
    .nav-menu.mobile-active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1500;
    }

    /* Dropdown removido - menu simplificado */
}

/* =================================================================
   HERO SECTION - CAPA PRINCIPAL
   ================================================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 140px; /* Compensar header maior */
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-bg-image {
    background: url('../videocapa/Milho.jpg') no-repeat center center / cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: brightness(0.4);
}

/* Classes para hero com background comum */
.hero-cover {
    position: relative;
    overflow: hidden;
}

.hero-cover > *:not(.hero-bg-image) {
    position: relative;
    z-index: 2;
}

.produto-hero.hero-cover .hero-bg-image {
    background: url('../videocapa/Milho.jpg') no-repeat center center / cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--branco);
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: block !important;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amarelo-claro) !important;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1002;
}

.hero-text h1 {
    color: var(--amarelo-claro);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text h2 {
    color: var(--branco);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Estatísticas */
.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.stat-item {
    text-align: center;
    color: var(--branco);
}

.stat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: var(--amarelo-claro);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* =================================================================
   SEÇÃO PRODUTOS - CARDS ELEGANTES E RESPONSIVOS
   ================================================================= */
.produtos-categoria {
    background: var(--cinza-claro);
    padding: 5rem 0;
    margin-top: 2rem;
}

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

.section-header h2 {
    color: var(--preto);
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--verde-escuro), var(--amarelo-ouro));
    border-radius: 2px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.produto-card {
    background: linear-gradient(135deg, var(--amarelo-claro) 0%, var(--amarelo-ouro) 100%);
    text-align: center;
    padding: 1.2rem 0.8rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(242, 203, 5, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 180px;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--laranja), var(--amarelo-ouro), var(--verde-escuro));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.produto-card:hover::before {
    opacity: 1;
}

.produto-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 50px rgba(242, 203, 5, 0.5);
    border-color: var(--verde-escuro);
}

.produto-card img {
    width: 85px;
    height: 85px;
    margin-bottom: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

/* Estilo específico para imagens PNG */
.produto-card img[src$=".png"],
.produto-card img[src$=".jpg"] {
    object-fit: cover;
}

/* Ajuste específico para imagem do equino */
.produto-card img[src*="equino.png"] {
    width: 95px;
    height: 95px;
    object-fit: cover;
}

/* Ajuste específico para imagem do suíno */
.produto-card img[src*="suino.png"] {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* Ajuste específico para imagem do bovino leite */
.produto-card img[src*="vleite.png"] {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* Estilo específico para imagens SVG */
.produto-card img[src$=".svg"] {
    filter: brightness(0) contrast(100%);
    object-fit: contain;
}

.produto-card:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.produto-card:hover img[src$=".svg"] {
    filter: brightness(0) contrast(100%) drop-shadow(2px 2px 8px rgba(0,0,0,0.3));
}

.produto-card h4 {
    color: var(--preto);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.8);
    line-height: 1.1;
    text-align: center;
}

.produto-card:hover h4 {
    color: var(--preto);
    transform: translateY(-2px);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

/* Outros Produtos */
.outros-produtos {
    display: flex;
    justify-content: center;
}

.produto-destaque {
    background: var(--branco);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--sombra-leve);
    transition: all 0.3s ease;
}

.produto-destaque:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.produto-destaque h4 {
    font-size: 1.3rem;
    color: var(--verde-escuro);
    margin: 1rem 0 0 0;
    transition: color 0.3s ease;
}

.produto-destaque:hover h4 {
    color: var(--laranja);
}

/* =================================================================
   RESPONSIVIDADE
   ================================================================= */
@media (max-width: 900px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        max-width: 600px;
    }

    .produto-card {
        padding: 1rem 0.6rem;
        max-width: 160px;
    }

    .produto-card img {
        width: 70px;
        height: 70px;
        margin-bottom: 0.6rem;
    }

    .produto-card img[src*="suino.png"],
    .produto-card img[src*="vleite.png"] {
        width: 75px;
        height: 75px;
    }

    .produto-card h4 {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Ajustar header para mobile */
    .navbar {
        padding: 1rem 0;
        min-height: 70px;
    }
    
    .nav-brand .logo {
        height: 40px;
    }
    
    .hero {
        height: 100vh;
        padding-top: 120px !important; /* Ajustado para compensar header */
        margin-top: 0 !important;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
    }

    .hero .container {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001;
        width: 100%;
        text-align: center;
        position: relative;
    }

    .hero-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 2rem;
    }

    /* Hero subtitle removido */

    .hero-text h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-text h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .hero-text p {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.3 !important;
    }

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

    .stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        margin: 1.5rem auto 2rem !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 320px;
        padding: 0.5rem;
        position: relative;
        z-index: 2;
    }

    .stat-item {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0.4rem 0.3rem !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-number {
        font-size: 1.5rem !important;
        display: block !important;
        visibility: visible !important;
        margin-bottom: 0.2rem !important;
    }

    .stat-label {
        display: block !important;
        visibility: visible !important;
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
        text-align: center;
    }

    /* Cards de produtos para tablet */
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .produto-card {
        padding: 1.2rem 0.8rem;
        aspect-ratio: 1;
        max-width: none;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 140px;
    }

    .produto-card img {
        width: 65px;
        height: 65px;
        margin-bottom: 0.8rem;
        object-fit: contain;
    }

    .produto-card img[src*="suino.png"],
    .produto-card img[src*="vleite.png"] {
        width: 70px;
        height: 70px;
    }

    .produto-card img[src*="equino.png"] {
        width: 70px;
        height: 70px;
    }

    .produto-card h4 {
        font-size: 0.7rem;
        line-height: 1.2;
        text-align: center;
        margin: 0;
        padding: 0 0.25rem;
        word-break: break-word;
        text-transform: uppercase;
        letter-spacing: 0.1px;
    }
}

/* Media queries específicas para iPhone e resoluções similares */

/* Resoluções específicas mencionadas pelo usuário */
@media (width: 390px) and (height: 844px) {
    /* iPhone 12 Pro exato */
    .hero {
        padding-top: 145px !important;
    }
    
    .produto-hero {
        margin-top: 135px !important;
        padding-top: 6.5rem !important;
    }
}

@media (width: 414px) and (height: 896px) {
    /* iPhone 11 Pro Max exato */
    .hero {
        padding-top: 140px !important;
    }
    
    .produto-hero {
        margin-top: 130px !important;
        padding-top: 6.2rem !important;
    }
}

@media (width: 375px) and (height: 667px) {
    /* iPhone 8 exato */
    .hero {
        padding-top: 125px !important;
    }
    
    .produto-hero {
        margin-top: 115px !important;
        padding-top: 5.5rem !important;
    }
}

@media (width: 360px) and (height: 640px) {
    /* Resolução pequena exata */
    .hero {
        padding-top: 115px !important;
    }
    
    .produto-hero {
        margin-top: 105px !important;
        padding-top: 5rem !important;
    }
}

@media (width: 360px) and (height: 740px) {
    /* Resolução específica */
    .hero {
        padding-top: 125px !important;
    }
    
    .produto-hero {
        margin-top: 115px !important;
        padding-top: 5.5rem !important;
    }
}

@media (width: 412px) and (height: 915px) {
    /* Resolução específica */
    .hero {
        padding-top: 135px !important;
    }
    
    .produto-hero {
        margin-top: 125px !important;
        padding-top: 6rem !important;
    }
}

@media (max-width: 430px) and (max-height: 950px) {
    /* iPhone 12 Pro Max e similares */
    .hero {
        padding-top: 130px !important;
    }
    
    .produto-hero {
        margin-top: 120px !important;
        padding-top: 5.5rem !important;
    }
}

@media (max-width: 414px) and (max-height: 920px) {
    /* iPhone 11 Pro Max, iPhone XS Max */
    .navbar {
        padding: 0.7rem 0 !important;
        min-height: 58px !important;
    }
    
    .nav-brand .logo {
        height: 34px !important;
    }
    
    .hero {
        padding-top: 135px !important;
    }
    
    .produto-hero {
        margin-top: 125px !important;
        padding-top: 5.8rem !important;
    }
}

@media (max-width: 390px) and (max-height: 850px) {
    /* iPhone 12 Pro, iPhone 13 Pro */
    .navbar {
        padding: 0.6rem 0 !important;
        min-height: 55px !important;
    }
    
    .nav-brand .logo {
        height: 32px !important;
    }
    
    .hero {
        padding-top: 140px !important;
    }
    
    .produto-hero {
        margin-top: 130px !important;
        padding-top: 6rem !important;
    }
}

@media (max-width: 375px) and (max-height: 680px) {
    /* iPhone 8, iPhone SE */
    .hero {
        padding-top: 110px !important;
    }
    
    .produto-hero {
        margin-top: 100px !important;
        padding-top: 4.5rem !important;
    }
}

@media (max-width: 360px) and (max-height: 650px) {
    /* Telas muito pequenas */
    .hero {
        padding-top: 100px !important;
    }
    
    .produto-hero {
        margin-top: 90px !important;
        padding-top: 4rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Ajustar header para telas muito pequenas */
    .navbar {
        padding: 0.6rem 0 !important;
        min-height: 55px !important;
    }
    
    .nav-brand .logo {
        height: 32px !important;
    }

    /* Menu mobile para telas muito pequenas */
    .nav-menu.mobile-active {
        padding: 5rem 1rem 1rem !important;
        gap: 0.5rem !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .nav-menu.mobile-active .mobile-close-btn {
        top: 1.5rem !important;
        right: 1.5rem !important;
    }

    .nav-menu.mobile-active li {
        max-width: 280px !important;
    }

    .nav-menu.mobile-active li a {
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
    }

}

/* Dispositivos muito pequenos (iPhone SE, etc.) */
@media (max-width: 375px) {
    .nav-menu.mobile-active {
        padding: 4rem 0.5rem 1rem !important;
        gap: 0.4rem !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .nav-menu.mobile-active .mobile-close-btn {
        top: 1rem !important;
        right: 1rem !important;
    }

    .nav-menu.mobile-active li {
        max-width: 260px !important;
    }

    .nav-menu.mobile-active li a {
        padding: 0.9rem 1rem !important;
        font-size: 0.95rem !important;
        margin-bottom: 0.2rem !important;
    }


    .hero {
        height: 100vh;
        padding-top: 100px !important; /* Ajustado para compensar header mobile */
        margin-top: 0 !important;
        justify-content: center;
        align-items: center;
    }

    .hero .container {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001;
        width: 100%;
        position: relative;
    }

    .hero-text {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 1.5rem;
    }

    /* Hero subtitle removido */

    .hero-text h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.1 !important;
    }

    .hero-text h2 {
        font-size: 1.2rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.1 !important;
    }

    .hero-text p {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
        margin-top: 1.2rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 300px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .stat-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: center;
    }

    .stat-number {
        font-size: 1.5rem !important;
        display: block !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
        display: block !important;
    }

    /* Cards de produtos FORÇADOS para mobile */
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.2rem !important;
        display: grid !important;
    }

    .produto-card {
        padding: 0.4rem 0.2rem !important;
        min-width: auto !important;
        max-width: none !important;
        border-radius: 6px !important;
        aspect-ratio: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 70px !important;
        max-height: 70px !important;
        width: 100% !important;
    }

    .produto-card img {
        width: 35px !important;
        height: 35px !important;
        margin-bottom: 0.2rem !important;
        object-fit: contain !important;
    }

    .produto-card img[src*="suino.png"],
    .produto-card img[src*="vleite.png"] {
        width: 37px !important;
        height: 37px !important;
    }

    .produto-card img[src*="equino.png"] {
        width: 37px !important;
        height: 37px !important;
    }

    .produto-card h4 {
        font-size: 0.5rem !important;
        line-height: 1 !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 0.05rem !important;
        word-break: break-word !important;
        -webkit-hyphens: auto !important;
        hyphens: auto !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05px !important;
        font-weight: 700 !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.6rem 1.2rem !important;
        width: 100%;
        max-width: 220px;
        font-size: 0.9rem !important;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

}

/* =================================================================
   PÁGINAS DE PRODUTOS - RESPONSIVIDADE ESPECÍFICA
   ================================================================= */

/* Hero das páginas de produtos - Mobile */
@media (max-width: 768px) {
    .produto-hero {
        padding: 4rem 0 2rem !important;
        margin-top: 100px !important;
        padding-top: 5rem !important;
    }

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

    .produto-info h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }

    .produto-subtitulo {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .produto-descricao {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.6 !important;
    }

    .produto-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }

    .produto-stats .stat {
        padding: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .produto-stats .numero {
        font-size: 2rem !important;
        margin-bottom: 0.3rem !important;
    }

    .produto-stats .label {
        font-size: 0.85rem !important;
    }

    .produto-imagem {
        height: 250px !important;
        margin-top: 1rem !important;
    }

    .img-placeholder {
        padding: 1rem !important;
    }

    .img-placeholder img {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 0.8rem !important;
    }

    .img-placeholder span {
        font-size: 1rem !important;
    }

    .breadcrumb {
        font-size: 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Seção de produtos em destaque */
    .produtos-destaque {
        padding: 3rem 0 !important;
    }

    .produtos-destaque h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .produtos-destaque p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    /* Grid de produtos em destaque */
    .produtos-destaque > .container > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Cards de produtos em destaque */
    .produtos-destaque .container > div > div {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .produtos-destaque h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }

    .produtos-destaque p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }

    /* Catálogo CTA */
    .catalog-cta {
        padding: 2rem 0 !important;
    }

    .catalog-cta h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .catalog-cta p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .btn-catalog {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        max-width: 300px !important;
    }
}

/* Telas muito pequenas (≤480px) */
@media (max-width: 480px) {
    .produto-hero {
        padding: 3rem 0 1.5rem !important;
        margin-top: 90px !important;
        padding-top: 4rem !important;
    }

    .produto-info h1 {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .produto-subtitulo {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }

    .produto-descricao {
        font-size: 0.95rem !important;
        margin-bottom: 1.2rem !important;
    }

    .produto-stats {
        gap: 0.8rem !important;
        margin-top: 1.5rem !important;
    }

    .produto-stats .stat {
        padding: 0.8rem !important;
    }

    .produto-stats .numero {
        font-size: 1.8rem !important;
        margin-bottom: 0.2rem !important;
    }

    .produto-stats .label {
        font-size: 0.8rem !important;
    }

    .produto-imagem {
        height: 200px !important;
    }

    .img-placeholder img {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 0.6rem !important;
    }

    .img-placeholder span {
        font-size: 0.9rem !important;
    }

    .breadcrumb {
        font-size: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .produtos-destaque {
        padding: 2rem 0 !important;
    }

    .produtos-destaque h2 {
        font-size: 1.8rem !important;
    }

    .produtos-destaque > .container > div:last-child {
        gap: 1rem !important;
    }

    .produtos-destaque .container > div > div {
        padding: 1.2rem !important;
    }

    .produtos-destaque h3 {
        font-size: 1.2rem !important;
    }

    .catalog-cta {
        padding: 1.5rem 0 !important;
    }

    .catalog-cta h3 {
        font-size: 1.3rem !important;
    }

    .catalog-cta p {
        font-size: 0.95rem !important;
    }

    .btn-catalog {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}

/* Telas ultra pequenas (≤360px) - Compatibilidade máxima */
@media (max-width: 360px) {
    /* Header ultra compacto */
    .navbar {
        padding: 0.6rem 0;
        min-height: 55px;
    }
    
    .nav-brand .logo {
        height: 30px;
    }
    
    /* Ajustar hero para telas ultra pequenas */
    .hero {
        padding-top: 80px !important;
    }
    
    /* Ajustar páginas de produtos */
    .produto-hero {
        margin-top: 80px !important;
        padding-top: 3rem !important;
    }
    
    .produto-info h1 {
        font-size: 1.8rem !important;
    }
    
    .produto-subtitulo {
        font-size: 0.9rem !important;
    }
    
    .produto-descricao {
        font-size: 0.9rem !important;
    }
}

/* =================================================================
   MEDIA QUERIES CONSOLIDADAS - MOBILE RESPONSIVO
   ================================================================= */

/* =================================================================
   TABLET (≤768px) - CONSOLIDADO
   ================================================================= */
@media (max-width: 768px) {
    /* Header compacto */
    .navbar {
        padding: 1rem 0;
        min-height: 70px;
    }
    
    .nav-brand .logo {
        height: 40px;
    }
    
    /* Hero principal */
    .hero {
        height: 100vh;
        padding-top: 120px !important;
        margin-top: 0 !important;
        justify-content: center;
        align-items: center;
        padding-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-text h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-text p {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.3 !important;
    }
    
    .stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        margin: 1.5rem auto 2rem !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 320px;
        padding: 0.5rem;
        position: relative;
        z-index: 2;
    }
    
    .stat-item {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0.4rem 0.3rem !important;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number {
        font-size: 1.5rem !important;
        display: block !important;
        visibility: visible !important;
        margin-bottom: 0.2rem !important;
    }
    
    .stat-label {
        display: block !important;
        visibility: visible !important;
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
        text-align: center;
    }
    
    /* Páginas de produtos */
    .produto-hero {
        padding: 4rem 0 2rem !important;
        margin-top: 100px !important;
        padding-top: 5rem !important;
    }
    
    .produto-hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .produto-info h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .produto-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    /* Cards de produtos - 2 colunas */
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 0.2rem !important;
        display: grid !important;
    }
    
    .produto-card {
        padding: 0.4rem 0.2rem !important;
        min-width: auto !important;
        max-width: none !important;
        border-radius: 6px !important;
        aspect-ratio: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 70px !important;
        max-height: 70px !important;
        width: 100% !important;
    }
    
    .produto-card img {
        width: 35px !important;
        height: 35px !important;
        margin-bottom: 0.2rem !important;
        object-fit: contain !important;
    }
    
    .produto-card h4 {
        font-size: 0.5rem !important;
        line-height: 1 !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 0 0.05rem !important;
        word-break: break-word !important;
        -webkit-hyphens: auto !important;
        hyphens: auto !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05px !important;
        font-weight: 700 !important;
    }
    
    /* Outras seções */
    .empresas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .milho-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .avaliacoes-google {
        padding: 3rem 0;
        overflow: visible;
    }
}

/* =================================================================
   MOBILE (≤480px) - CONSOLIDADO
   ================================================================= */
@media (max-width: 480px) {
    /* Header ultra compacto */
    .navbar {
        padding: 0.6rem 0 !important;
        min-height: 55px !important;
    }
    
    .nav-brand .logo {
        height: 32px !important;
    }
    
    /* Hero principal */
    .hero {
        height: 100vh;
        padding-top: 100px !important;
        margin-top: 0 !important;
        justify-content: center;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-text h2 {
        font-size: 1.2rem !important;
        margin-bottom: 0.6rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-text p {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }
    
    .stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6rem !important;
        margin-top: 1.2rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 300px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Páginas de produtos */
    .produto-hero {
        padding: 3rem 0 1.5rem !important;
        margin-top: 90px !important;
        padding-top: 4rem !important;
    }
    
    .produto-info h1 {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .produto-stats {
        gap: 0.8rem !important;
        margin-top: 1.5rem !important;
    }
    
    .avaliacoes-google {
        padding: 2rem 0;
    }
}

/* =================================================================
   ULTRA PEQUENO (≤360px) - CONSOLIDADO
   ================================================================= */
@media (max-width: 360px) {
    /* Header ultra compacto */
    .navbar {
        padding: 0.6rem 0;
        min-height: 55px;
    }
    
    .nav-brand .logo {
        height: 30px;
    }
    
    /* Hero ultra compacto */
    .hero {
        padding-top: 80px !important;
    }
    
    /* Páginas de produtos ultra compactas */
    .produto-hero {
        margin-top: 80px !important;
        padding-top: 3rem !important;
    }
    
    .produto-info h1 {
        font-size: 1.8rem !important;
    }
    
    .produto-subtitulo {
        font-size: 0.9rem !important;
    }
    
    .produto-descricao {
        font-size: 0.9rem !important;
    }
    
    /* Cards ultra compactos */
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.3rem !important;
        padding: 0 0.1rem !important;
        display: grid !important;
    }
    
    .produto-card {
        padding: 0.3rem 0.1rem !important;
        min-height: 60px !important;
        max-height: 60px !important;
        border-radius: 4px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .produto-card img {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 0.15rem !important;
        object-fit: contain !important;
    }
    
    .produto-card h4 {
        font-size: 0.45rem !important;
        line-height: 1 !important;
        padding: 0 0.02rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin: 0 !important;
    }
}

/* =================================================================
   RESOLUÇÕES ESPECÍFICAS DO IPHONE - CONSOLIDADAS
   ================================================================= */

/* Telas muito pequenas (≤360px) - FORÇADO */
@media (max-width: 360px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.3rem !important;
        padding: 0 0.1rem !important;
        display: grid !important;
    }

    .produto-card {
        padding: 0.3rem 0.1rem !important;
        min-height: 60px !important;
        max-height: 60px !important;
        border-radius: 4px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .produto-card img {
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 0.15rem !important;
        object-fit: contain !important;
    }

    .produto-card img[src*="suino.png"],
    .produto-card img[src*="vleite.png"],
    .produto-card img[src*="equino.png"] {
        width: 32px !important;
        height: 32px !important;
    }

    .produto-card h4 {
        font-size: 0.45rem !important;
        line-height: 1 !important;
        padding: 0 0.02rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        margin: 0 !important;
    }
}

/* =================================================================
   UTILITÁRIOS E CLASSES AUXILIARES
   ================================================================= */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Animações suaves */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* ===== SEÇÕES ESPECÍFICAS ADICIONADAS ===== */

/* Seção Sobre a Empresa */
.sobre-empresa {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.empresas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.empresa-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.empresa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.proleite-card {
    border-top: 4px solid var(--verde-escuro);
}

.ceavic-card {
    border-top: 4px solid var(--laranja);
}

.empresa-header {
    text-align: center;
    margin-bottom: 2rem;
}

.empresa-header h2 {
    color: var(--verde-escuro);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.empresa-header p {
    color: var(--laranja);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.empresa-imagem {
    text-align: center;
    margin-bottom: 2rem;
}

.empresa-imagem img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.empresa-imagem img:hover {
    transform: scale(1.05);
}

.empresa-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.empresa-card h3 {
    color: var(--verde-escuro);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.empresa-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.empresa-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.95rem;
}

.empresa-card .check {
    color: var(--verde-escuro);
    font-weight: bold;
    background: rgba(10, 89, 38, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.ceavic-card .check {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.acoes {
    margin-top: auto;
    text-align: center;
}

/* Responsivo para seções empresa */
@media (max-width: 768px) {
    .empresas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .empresa-card {
        padding: 2rem;
    }

    .empresa-header h2 {
        font-size: 1.8rem;
    }

    .empresa-imagem img {
        height: 150px;
    }
}

/* Controle de imagens - Fixes para imagens gigantes */
.produto-destaque img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.produto-destaque:hover img {
    transform: scale(1.05);
}

/* Slider de outros produtos */
.outros-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.outros-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.outros-slider img.active {
    opacity: 1;
}

/* Seção Milho em Grão */
.milho-grao {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.milho-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.milho-media {
    position: relative;
}

.milho-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--verde-escuro);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.milho-conteudo h2 {
    font-size: 2.5rem;
    color: var(--verde-escuro);
    margin-bottom: 1rem;
    font-weight: 700;
}

.milho-intro {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.milho-beneficios li {
    padding: 0.75rem 0;
    color: #374151;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.milho-beneficios li:before {
    content: '✓';
    color: var(--verde-escuro);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    background: rgba(10, 89, 38, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.btn-primary {
    background: var(--verde-escuro);
    color: white;
}

.btn-primary:hover {
    background: var(--laranja);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 142, 4, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--verde-escuro);
    border: 2px solid var(--verde-escuro);
}

.btn-secondary:hover {
    background: var(--verde-escuro);
    color: white;
    transform: translateY(-2px);
}

/* Responsivo para seção milho */
@media (max-width: 768px) {
    .milho-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .milho-conteudo h2 {
        font-size: 2rem;
    }

    .acoes {
        justify-content: center;
    }

    .btn {
        flex: 1;
        text-align: center;
        min-width: 200px;
    }
}

/* =================================================================
   SEÇÃO AVALIAÇÕES DO GOOGLE
   ================================================================= */
.avaliacoes-google {
    background: linear-gradient(135deg, var(--verde-escuro) 0%, #0f4c2b 100%);
    padding: 5rem 0;
    color: var(--branco);
}

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

.avaliacoes-google .section-header h2 {
    color: var(--branco);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.avaliacoes-google .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin: 0;
}

.avaliacoes-slider {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Desktop - Garantir que o slider funcione bem em telas grandes */
@media (min-width: 1024px) {
    .avaliacoes-slider {
        max-width: 800px;
    }

    .avaliacao-card {
        padding: 3.5rem;
        min-height: 450px;
    }

    .cliente-header {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .depoimento {
        font-size: 1.4rem;
        line-height: 1.7;
    }
}

.avaliacoes-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 300%; /* Para 3 slides */
    height: auto;
    min-height: 400px;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    touch-action: pan-y; /* Permitir scroll vertical, mas controlar horizontal */
    cursor: grab;
}

.avaliacoes-container:active {
    cursor: grabbing;
}

.avaliacao-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(242, 203, 5, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    width: 33.333% !important; /* Cada card ocupa 1/3 do container */
    flex-shrink: 0;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    min-height: 400px;
    position: relative;
    z-index: 1;
}

.avaliacao-card.active {
    opacity: 1;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--amarelo-claro);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--amarelo-claro);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(242, 203, 5, 0.7);
}

.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    background: rgba(242, 203, 5, 0.95);
    color: var(--preto);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
    background: var(--amarelo-claro);
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-btn:active {
    transform: scale(0.95);
}

.prev-btn {
    margin-left: -15px;
    left: 5px;
}

.next-btn {
    margin-right: -15px;
    right: 5px;
}

.cliente-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.cliente-avatar {
    flex-shrink: 0;
}

.cliente-info {
    text-align: left;
}

.cliente-nome {
    color: var(--branco);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.cliente-detalhes {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.avaliacao-estrelas {
    text-align: center;
    margin-bottom: 2rem;
}

.estrela {
    color: #FFD700 !important; /* Dourado brilhante como fallback */
    color: var(--amarelo-claro);
    font-size: 1.8rem;
    margin: 0 0.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-block;
    font-weight: bold;
    font-style: normal;
    font-family: Arial, sans-serif;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 1;
}

.depoimento {
    color: var(--branco);
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    margin-bottom: 0;
    font-weight: 500;
}

.cta-avaliacoes {
    background: rgba(242, 203, 5, 0.1);
    border-radius: 20px;
    padding: 3rem;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(242, 203, 5, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-avaliacoes h3 {
    color: var(--branco);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-avaliacoes p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-avaliacoes .btn {
    background: linear-gradient(135deg, var(--amarelo-claro) 0%, var(--amarelo-ouro) 100%);
    color: var(--preto);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(242, 203, 5, 0.4);
}

.cta-avaliacoes .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 203, 5, 0.6);
    background: linear-gradient(135deg, var(--amarelo-ouro) 0%, var(--laranja) 100%);
}

/* Responsivo para Avaliações */
@media (max-width: 768px) {
    .avaliacoes-google {
        padding: 3rem 0;
        overflow: visible;
        position: relative;
    }

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

    .avaliacoes-slider {
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto 4rem auto;
    }

    .avaliacoes-container {
        width: 300%; /* Para 3 cards lado a lado */
        min-height: 350px;
    }

    .avaliacao-card {
        padding: 2rem 1.5rem;
        width: 33.333%; /* Cada card ocupa 1/3 do container */
        flex-shrink: 0;
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cliente-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .cliente-info {
        text-align: center;
    }

    .avaliacao-estrelas {
        margin-bottom: 1.5rem;
    }

    .estrela {
        font-size: 1.6rem;
        margin: 0 0.05rem;
    }

    .depoimento {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .cta-avaliacoes {
        padding: 2rem;
    }

    .cta-avaliacoes h3 {
        font-size: 1.6rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        position: relative;
        z-index: 10;
    }

    .prev-btn {
        margin-left: -15px;
        left: 10px;
    }

    .next-btn {
        margin-right: -15px;
        right: 10px;
    }

    /* Garantir que os botões fiquem visíveis */
    .slider-navigation {
        padding: 0 15px;
        z-index: 10;
        position: relative;
    }
    }

    /* Para telas muito pequenas - garantir visibilidade completa */
    @media (max-width: 480px) {
    .avaliacoes-google {
        padding: 2rem 0;
    }

    .avaliacoes-slider {
        max-width: 100%;
        margin: 0 auto 2rem auto;
        padding: 0 0.5rem;
    }

    .avaliacoes-container {
        min-height: 300px;
        touch-action: pan-y;
    }

    .avaliacao-card {
        padding: 1.5rem 1rem;
        width: 33.333%;
        flex-shrink: 0;
        min-height: 300px;
    }

    .cliente-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .cliente-nome {
        font-size: 1.1rem;
    }

    .cliente-detalhes {
        font-size: 0.8rem;
    }

    .avaliacao-estrelas {
        margin-bottom: 1rem;
    }

    .estrela {
        font-size: 1.4rem;
        margin: 0 0.05rem;
    }

    .depoimento {
        font-size: 1rem;
        line-height: 1.4;
    }

        .nav-btn {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .prev-btn {
            margin-left: -10px;
            left: 8px;
        }

        .next-btn {
            margin-right: -10px;
            right: 8px;
        }

        .slider-navigation {
            padding: 0 20px;
        }

    .cta-avaliacoes {
        padding: 1.5rem;
    }

    .cta-avaliacoes h3 {
        font-size: 1.4rem;
    }

    /* Melhorar indicadores para mobile */
    .slider-indicators {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* Adicionar dica visual de swipe */
    .avaliacoes-slider::after {
        content: "← Deslize para navegar →";
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
    }
}
