:root {
    /* Paleta de Cores Agronegócio */
    --primary-green: #2E7D32;        /* Verde principal - natureza/crescimento */
    --secondary-green: #4CAF50;      /* Verde secundário - sustentabilidade */
    --accent-green: #8BC34A;         /* Verde claro - inovação */
    --earth-brown: #5D4037;          /* Marrom terra - agricultura */
    --golden-yellow: #FFC107;        /* Amarelo dourado - colheita/prosperidade */
    --sky-blue: #2196F3;             /* Azul céu - tecnologia/futuro */
    --deep-blue: #1565C0;            /* Azul profundo - confiança */
    
    /* Divider styles */
    --divider-border-style: dotted;
    --divider-color: #80694D;
    --divider-border-width: 3px;
    
    /* Cores neutras */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --gradient-earth: linear-gradient(135deg, var(--earth-brown) 0%, var(--golden-yellow) 100%);
    --gradient-sky: linear-gradient(135deg, var(--sky-blue) 0%, var(--deep-blue) 100%);
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Bordas */
    --border-radius-small: 8px;
    --border-radius-medium: 16px;
    --border-radius-large: 24px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* Pop-up de Aviso */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-container {
    transform: scale(1) translateY(0);
}

.popup-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 45, 114, 0.1);
    position: relative;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #002D72;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popup-title::before {
    content: '⚠️';
    font-size: 1.2rem;
}

.popup-message {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.popup-close-btn, .escpopup-close-btn {
    background: linear-gradient(135deg, #002D72 0%, #1565C0 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 45, 114, 0.3);
}

.popup-close-btn:hover, .escpopup-close-btn:hover {
    background: linear-gradient(135deg, #1565C0 0%, #002D72 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 45, 114, 0.4);
}

.popup-close-btn:active, .escpopup-close-btn:active {
    transform: translateY(0);
}

/* Responsividade do Pop-up */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
    }
    
    .popup-content {
        padding: 30px 25px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 25px 20px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-message {
        font-size: 0.95rem;
    }
    
    .popup-close-btn, .escpopup-close-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Utilitários */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Animações personalizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}



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

/* Header moderno */
.header {
    background: #002D72;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-medium);
    border-bottom: 1px solid rgba(0, 45, 114, 0.3);
}

.header.scrolled {
    background: rgba(0, 45, 114, 0.98);
    box-shadow: var(--shadow-medium);
}

.header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 24px;
    gap: 80px;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform var(--transition-medium);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 48px;
    width: auto;
    margin-left: 150px;
    transition: transform var(--transition-medium);
    display: block;
}

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

/* Navegação desktop moderna */
.desktop-nav {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    margin-left: 170px;
}

/* Botão Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-medium);
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-medium);
    transform-origin: center;
    margin: 2px 0;
}

/* Estado ativo do botão hambúrguer */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Menu Mobile */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #002D72;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all var(--transition-medium);
    position: relative;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--golden-yellow);
}

.mobile-nav-link.has-submenu {
    cursor: pointer;
}



/* Submenu Mobile */
.mobile-submenu {
    list-style: none;
    background: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu.expanded {
    max-height: 200px;
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 16px 24px 16px 48px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all var(--transition-medium);
    border-left: 3px solid transparent;
}

.mobile-submenu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--golden-yellow);
    border-left-color: var(--golden-yellow);
    padding-left: 52px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 100px;
    margin: 0;
    padding: 0;
    margin-left: -40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--golden-yellow);
}



/* Dropdown moderno */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #002D72;
    box-shadow: var(--shadow-heavy);
    border-radius: var(--border-radius-medium);
    padding: 16px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transition: all var(--transition-medium);
    list-style: none;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}



.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--golden-yellow), transparent);
    transition: width var(--transition-fast);
    opacity: 0.3;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--golden-yellow);
    transform: translateX(8px);
}

.dropdown-menu a:hover::before {
    width: 4px;
}



/* Hero Section com imagem */
.hero {
    width: 100%;
    display: block;
    margin-top: 70px; /* Compensar altura do header fixo */
    background-color: #002D72; /* Mesma cor do navegador */
    min-height: 400px; /* Altura mínima para evitar layout shifts */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%; /* Aumentar o tamanho da imagem para 85% da largura */
    height: auto;
    display: block;
    margin: 20px auto 0; /* Centralizar horizontalmente e adicionar margem superior */
    
    /* Otimizações de qualidade de imagem */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: high-quality;
    image-rendering: auto;
    
    /* Interpolação suave */
    -ms-interpolation-mode: bicubic;
    
    /* Anti-aliasing melhorado */
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    
    /* Aceleração de hardware */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    
    /* Filtros para melhorar nitidez */
    filter: contrast(1.02) saturate(1.01) brightness(1.01);
    -webkit-filter: contrast(1.02) saturate(1.01) brightness(1.01);
    
    /* Otimização de memória */
    will-change: transform;
    
    /* Suavização de bordas */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* Hero Banner Link */
.hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
}

.hero-banner-link:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.hero-banner-link:hover::after {
    content: "Clique para ver nossos produtos";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
    animation: fadeInUp 0.3s ease;
}

.hero-banner-link:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
    border-radius: var(--border-radius-small);
}

.hero-banner-link:active {
    transform: scale(0.98);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Innovation Section com Magic UI Effects */
.innovation-section {
    padding: 160px 0;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(0, 46, 114, 0.115) 0%, rgba(0, 45, 114, 0.9) 100%),
        url('img/background-produce.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.innovation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Particles Animation */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 215, 0, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    animation: float-particles 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 30%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 40%;
    left: 90%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.particle:nth-child(6) {
    width: 14px;
    height: 14px;
    top: 70%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 10s;
}

.particle:nth-child(7) {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 50%;
    animation-delay: 6s;
    animation-duration: 6s;
}

.particle:nth-child(8) {
    width: 12px;
    height: 12px;
    top: 90%;
    left: 85%;
    animation-delay: 7s;
    animation-duration: 8s;
}

@keyframes float-particles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orb-float 12s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.3) 0%, rgba(76, 175, 80, 0.1) 70%, transparent 100%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, rgba(255, 235, 59, 0.1) 70%, transparent 100%);
    top: 60%;
    right: -5%;
    animation-delay: 4s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.3) 0%, rgba(100, 181, 246, 0.1) 70%, transparent 100%);
    bottom: 20%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Innovation Grid Layout */
.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Innovation Content */
.innovation-content {
    text-align: left;
}

/* Animated Title - Smaller */
.innovation-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    perspective: 1000px;
}

.innovation-title .word {
    display: inline-block;
    margin-right: 0.3em;
    color: white;
    animation: word-reveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
}

.innovation-title .word:nth-child(1) { animation-delay: 0.1s; }
.innovation-title .word:nth-child(2) { animation-delay: 0.2s; }
.innovation-title .word:nth-child(3) { animation-delay: 0.3s; }
.innovation-title .word:nth-child(4) { animation-delay: 0.4s; }
.innovation-title .word:nth-child(5) { animation-delay: 0.5s; }
.innovation-title .word:nth-child(6) { animation-delay: 0.6s; }
.innovation-title .word:nth-child(7) { animation-delay: 0.7s; }
.innovation-title .word:nth-child(8) { animation-delay: 0.8s; }
.innovation-title .word:nth-child(9) { animation-delay: 0.9s; }

@keyframes word-reveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

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

/* Innovation Subtitle */
.innovation-subtitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 40px;
    animation: fade-in-up 1s ease-out 1.5s both;
}

.innovation-subtitle p {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Video Container with Magic UI Effects */
.video-container {
    position: relative;
    animation: fade-in-right 1s ease-out 0.8s both;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(33, 150, 243, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Video Glow Effect */
.video-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #4CAF50, #2196F3, #FFC107, #4CAF50);
    background-size: 400% 400%;
    border-radius: 28px;
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    animation: glow-rotate 4s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover .video-glow {
    opacity: 0.6;
}

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

/* Video Frame */
.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

/* Video Overlay with Play Button */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    cursor: pointer;
}

.video-overlay:hover {
    opacity: 0;
}

/* Animated Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    animation: play-pulse 2s ease-in-out infinite;
}

.play-button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

@keyframes play-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.4),
            0 0 0 10px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

/* Play Icon */
.play-icon {
    width: 24px;
    height: 24px;
    color: #2E7D32;
    margin-left: 4px; /* Offset to center the triangle */
    transition: color 0.3s ease;
}

.play-button:hover .play-icon {
    color: #1B5E20;
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.shimmer-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(255, 215, 0), transparent);
    position: relative;
    overflow: hidden;
}

.shimmer-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

/* Mission Section */
.mission-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f8f0 100%);
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--golden-yellow);
    border-radius: 2px;
}

/* Portfolio Section Compacta */
.portfolio-section-compact {
    padding: 100px 0;
    position: relative;
    overflow: visible;
    background: 
        linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.6) 0%, 
            rgba(0, 0, 0, 0.4) 35%, 
            transparent 35%, 
            transparent 100%
        ),
        url('img/textura.jpg.webp');
    background-size: 100% 0%, auto;
    background-position: top center, bottom center;
    background-repeat: no-repeat, repeat;
    background-attachment: scroll;
}

.portfolio-section-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 65%;
    background: url('img/produce-plantacao-banner-portfolio-1024x683.jpg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(1.5px);
    -webkit-filter: blur(1.5px);
    pointer-events: none;
    z-index: 0;
}

.portfolio-section-compact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 65%;
    background: 
        radial-gradient(circle 3px at 12% 15%, rgba(0, 0, 0, 0.06) 1px, transparent 1px),
        radial-gradient(circle 2px at 87% 23%, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        radial-gradient(circle 2.5px at 34% 67%, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        radial-gradient(circle 1.5px at 78% 89%, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        radial-gradient(circle 2px at 45% 34%, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        radial-gradient(circle 3px at 67% 12%, rgba(0, 0, 0, 0.07) 1px, transparent 1px),
        radial-gradient(circle 1px at 23% 78%, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        radial-gradient(circle 2.5px at 89% 56%, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 
        120px 85px, 
        95px 110px, 
        140px 75px, 
        80px 130px,
        115px 90px,
        75px 95px,
        105px 120px,
        85px 100px;
    pointer-events: none;
    z-index: 1;
    animation: grain-subtle 30s ease-in-out infinite;
}

@keyframes grain-subtle {
    0%, 100% { 
        transform: translateX(0) translateY(0); 
        opacity: 1;
    }
    25% { 
        transform: translateX(2px) translateY(-1px); 
        opacity: 0.9;
    }
    50% { 
        transform: translateX(-1px) translateY(2px); 
        opacity: 1;
    }
    75% { 
        transform: translateX(1px) translateY(1px); 
        opacity: 0.95;
    }
}



@keyframes organic-flow {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8;
    }
    33% { 
        transform: scale(1.02) rotate(1deg); 
        opacity: 0.6;
    }
    66% { 
        transform: scale(0.98) rotate(-1deg); 
        opacity: 0.9;
    }
}

/* Background Melhorado */
.portfolio-background-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Formas Geométricas */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.15) 0%, rgba(76, 175, 80, 0.1) 50%, rgba(255, 193, 7, 0.05) 100%);
    filter: blur(40px);
    animation: shape-float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: -10%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes shape-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, -10px) rotate(270deg) scale(1.05);
    }
}



/* Overlay Gradiente */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
}

/* Conteúdo Compacto */
.portfolio-content-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    gap: 40px;
}

.portfolio-text-section {
    color: white;
}

.portfolio-title-compact {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: white;
}

.title-highlight {
    background: linear-gradient(135deg, rgb(255, 215, 0) 0%, rgb(255, 235, 59) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.portfolio-subtitle-compact {
    font-size: clamp(1.5rem, 1.5vw, 1.6rem);
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    background-color: #44D62C;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

.btn-portfolio-compact {
    position: relative;
    background: linear-gradient(135deg, #002D72 0%, #1565C0 100%);
    color: #fff;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 45, 114, 0.4);
}

.btn-portfolio-compact:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1565C0 0%, #002D72 100%);
    box-shadow: 0 8px 25px rgba(0, 45, 114, 0.6);
    color: #fff;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-portfolio-compact:hover .btn-icon {
    transform: translateY(-4px);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-portfolio-compact:hover .btn-shimmer {
    left: 100%;
}

/* Seção Visual */
.portfolio-visual-section {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: none;
    background: transparent;
}

.guide-display {
    position: relative;
    max-width: 350px;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* Fundo brilhante removido - mantendo apenas sombra simples */

.guide-frame-compact {
    position: relative;
    border-radius: 16px;
    padding: 0;
    transition: all 0.4s ease;
    border: none !important;
    background: transparent !important;
    overflow: hidden;
    box-shadow: none !important;
}

.guide-frame-compact:hover {
    transform: translateY(-2px);
}

.guide-frame-compact:hover .guide-image-compact {
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.2)) drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
}

.guide-image-compact {
    width: 110%;
    height: auto;
    display: block;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    transform: scale(1.05);
    object-fit: cover;
    margin: -2.5%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
    transition: filter 0.4s ease;
    box-shadow: none !important;
}

/* Missão e Estatísticas Compactas */
.mission-stats-compact {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mission-title-compact {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 700;
    color: black;
    margin-bottom: 40px;
    margin-top: 40px;
    line-height: 1.3;
}

.stats-row-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item-compact {
    text-align: center;
}

.stat-number-compact {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #000000;
    background-color: #44D62C;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-text-compact {
    font-size: 1rem;
    color: #000000;
    font-weight: 600;
    line-height: 1.4;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.7), transparent);
}

/* Botões modernos com efeitos */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Stats Section moderna */
.stats-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px 20px;
    border-radius: var(--border-radius-large);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-medium);
    animation: scaleIn 0.6s ease-out;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, var(--golden-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.95;
}










/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 243, 4, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
    position: relative;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--golden-yellow);
    border-radius: 2px;
}

.contact-form-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 5px;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #c92b2b;
}

.form-group input:focus,

.form-group input:valid,
.form-group select:valid {
    border-color: #2E7D32;
}

.form-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--golden-yellow);
    color: black;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.form-submit-btn:hover {
    background: #E6AC00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 25px;
        margin: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
    }
    
    .form-submit-btn {
        padding: 15px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .contact-form-title {
        margin-bottom: 15px;
    }
    
    .contact-form-subtitle {
        margin-bottom: 30px;
    }
}

/* Footer moderno */
.footer {
    background: url('img/textura.jpg.webp');
    background-size: auto;
    background-position: bottom center;
    background-repeat: repeat;
    background-attachment: scroll;
    color: var(--white);
    padding: 80px 0 24px;
    position: relative;
    overflow: hidden;
}

/* Footer Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all var(--transition-medium);
    border-radius: 12px;
    padding: 8px;
}

.footer-logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-logo-img {
    height: 70px;
    width: auto;
    transition: transform var(--transition-medium);
    cursor: pointer;
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
}

/* Footer Divider */
.footer-divider {
    width: 80%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 2;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 400px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-align: flex-start;
}

.footer-section h5 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #002D72;
    position: relative;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--golden-yellow);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
    font-weight: 10;
    color: #012457;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section a {
    color: #002D72;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--secondary-green);
    transform: translateX(4px);
}

.footer-social {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.social-link {
    display: inline-block;
    margin: 0 12px 0 0;
    color: black;
    font-size: 24px;
    transition: all var(--transition-medium);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: #002D72;
    background: rgba(0, 45, 114, 0.1);
    box-shadow: 0 8px 25px rgba(0, 45, 114, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-green);
}

.footer-copyright {
    font-size: 14px;
    color: var(--medium-gray);
    opacity: 0.8;
}

/* Otimizações para telas de alta densidade (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image {
        /* Filtros mais sutis para telas de alta densidade */
        filter: contrast(1.01) saturate(1.005) brightness(1.005);
        -webkit-filter: contrast(1.01) saturate(1.005) brightness(1.005);
        
        /* Renderização otimizada para Retina */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
    }
}

/* Otimizações para telas 4K e superiores */
@media (min-width: 2560px) {
    .hero-image {
        /* Ajustes para telas muito grandes */
        filter: contrast(1.03) saturate(1.02) brightness(1.02);
        -webkit-filter: contrast(1.03) saturate(1.02) brightness(1.02);
    }
}

/* Responsive Design Moderno */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .portfolio-content {
        gap: 60px;
    }
}



@media (max-width: 1024px) {
    .header .container {
        gap: 60px;
    }
    
    .nav-list {
        gap: 40px;
    }
    
    .hero {
        min-height: 300px;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }
    
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .portfolio-text .section-title {
        text-align: center;
    }
    
    .portfolio-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
        gap: 20px;
    }
    
    /* Esconder navegação desktop em mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Mostrar botão menu mobile */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* Ajustar logo para mobile - remover margin-left */
    .logo-img {
        margin-left: 0;
    }
    

    

    

    
    .hero {
        min-height: 250px;
        padding: 20px 0;
    }
    
    .hero-image {
        max-width: 85%;
    }


    
    .section-title {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
    }
    
    .innovation-section,
    .mission-section,
    .portfolio-section {
        padding: 80px 0;
    }
    

    
    .innovation-section {
        min-height: 70vh;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .innovation-content {
        text-align: center;
    }
    
    .innovation-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .innovation-subtitle {
        justify-content: center;
        gap: 20px;
    }
    
    .shimmer-line {
        width: 60px;
    }
    
    .video-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-icon {
        width: 20px;
        height: 20px;
    }
    
    .stats-section {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header .container {
        padding: 12px 16px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .hero {
        min-height: 200px;
        padding: 15px 0;
    }
    
    .hero-image {
        max-width: 90%;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 2.8vw, 2rem);
    }
    
    .innovation-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .innovation-section {
        min-height: 60vh;
        padding: 60px 0;
    }
    
    .innovation-grid {
        gap: 40px;
    }
    
    .video-wrapper {
        max-width: 500px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        width: 18px;
        height: 18px;
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 150px;
        height: 150px;
    }
    
    .particle {
        width: 6px !important;
        height: 6px !important;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 3.5vw, 2.8rem);
    }
    
    .stat-text {
        font-size: 1.1rem;
    }

    
    .social-link {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 24px;
        margin: 0 12px;
    }
}

/* Animações de entrada quando elementos ficam visíveis */
@media (prefers-reduced-motion: no-preference) {
    
    .section-title {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    
    .portfolio-text {
        animation: fadeInLeft 0.8s ease-out 0.3s both;
    }
    
    .portfolio-image {
        animation: fadeInRight 0.8s ease-out 0.4s both;
    }
    
    .stat-item {
        animation: scaleIn 0.6s ease-out both;
    }
    
    .stat-item:nth-child(1) { animation-delay: 0.2s; }
    .stat-item:nth-child(2) { animation-delay: 0.4s; }

}

/* Efeitos de hover especiais para elementos interativos */

.btn-primary:hover {
    animation: pulse 1s ease-in-out infinite;
}

.stat-item:hover .stat-number {
    animation: pulse 0.8s ease-in-out;
}

/* Gradiente animado para elementos especiais */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}



/* Loading states e microinterações */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Products Section */
.products-section {
    padding: 120px 0;
    position: relative;
    background: url('img/BANNER_SITE_SEGURO-scaled-e1696273042981.jpg (1).webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.products-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.products-title {
    font-size: 72px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: #2AF304;
    padding: 0px 250px;
    border-radius: 10px;
    display: inline-block;
    line-height: 1.2;
    text-align: center;
}

.products-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: white;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.products-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.product-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent;
    border-radius: 20px;
    padding: 40px 30px;
    width: 200px;
    height: 200px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-btn:hover {
    transform: translateY(-8px) scale(1.05);
    background: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--golden-yellow);
}

.product-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-btn:hover .product-icon {
    transform: scale(1.1);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .products-section {
        padding: 80px 0;
        min-height: 50vh;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .products-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .products-title {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
        padding: 0px 50px;
        line-height: 0.8;
    }
    
    .products-buttons {
        gap: 20px;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .product-btn {
        padding: 30px 25px;
        width: 180px;
        height: 180px;
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 60px 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .products-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .products-title {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
        padding: 0px 50px;
        line-height: 0.8;
    }
    
    .products-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        justify-content: center;
        display: flex;
        width: 100%;
    }
    
    .product-btn {
        width: 160px;
        height: 160px;
    }
}

/* Milho Page Styles */
.milho-hero-section {
    padding: 110px 0;
    margin-top: 80px; /* Compensar altura do header fixo */
    position: relative;
    background: url('img/BANNER_SITE_SEGURO-scaled-e1696273042981.jpg (1).webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: visible; /* Alterado de hidden para visible para evitar cortes */
    min-height: 45vh;
    display: flex;
    align-items: center;
}

.milho-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.milho-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #F4E3C9;
    margin-bottom: 20px;
    margin-top: 40px;
    background: #002D72;
    padding: 0px 180px;
    border-radius: 10px;
    line-height: 1.2;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.milho-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: white;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Desktop - subtítulo em uma linha */
@media (min-width: 769px) {
    .milho-hero-subtitle {
        white-space: nowrap;
    }
}

.milho-content-section {
    min-height: 100vh;
    background: url('img/background-pagina-milho-scaled.jpg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0 0 0;
    display: flex;
    align-items: flex-start;
    overflow: flex-start;
}

.milho-content-section .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 50px;
    position: relative;
    padding-bottom: 0;
}

/* Ajuste para telas médias (notebooks) */
@media (max-width: 1366px) {
    .milho-content-section .container {
        padding: 0 30px;
        max-width: 1000px;
    }
    
    
    .milho-content-wrapper {
        gap: 40px;
    }
    
    .milho-content-left {
        max-width: 60%;
    }
    
    .milho-content-right {
        max-width: 40%;
    }
    
    .corn-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .corn-info-card {
        height: 170px;
        padding: 20px;
    }
    
    .corn-info-text p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Ajuste para telas pequenas (tablets) */
@media (max-width: 1024px) {
    .milho-content-section .container {
        padding: 0 20px 40px;
        max-width: 900px;
    }
    
    .milho-content-wrapper {
        gap: 35px;
    }
    
    .milho-content-left {
        max-width: 55%;
    }
    
    .milho-content-right {
        max-width: 45%;
    }
    
    .corn-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .corn-info-card {
        height: 165px;
        padding: 18px;
    }
    
    .corn-info-text p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .milho-content-section .container {
        padding: 0 15px 40px;
        max-width: 100%;
    }
    
    .milho-content-section {
        overflow: hidden;
        position: relative;
    }
    
    .milho-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .milho-content-left,
    .milho-content-right {
        max-width: 100%;
        width: 100%;
    }
    
    .corn-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .corn-info-card {
        height: 150px;
        padding: 15px;
    }
    
    .corn-info-text p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Video Section Styles */
.video-section {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 40px auto;
    text-align: center;
}

/* Responsividade para seção de vídeo */
@media (max-width: 1366px) {
    .video-section {
        max-width: 700px;
        margin: 50px auto 35px auto;
    }
    
    .video-description p {
        font-size: 17px;
        max-width: 550px;
    }
}

@media (max-width: 1024px) {
    .video-section {
        max-width: 600px;
        margin: 45px auto 30px auto;
    }
    
    .video-description p {
        font-size: 16px;
        max-width: 500px;
    }
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-description {
    margin-top: 20px;
}

.video-description p {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.milho-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
}

.milho-content-left {
    flex: 1;
    max-width: 60%;
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    text-align: left;
}

.milho-content-right {
    flex: 1;
    max-width: 50%;
    min-width: 500px;
}

/* Corn Info Grid Styles */
.corn-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 180px);
    grid-template-rows: repeat(2, 180px);
    gap: 20px;
    width: 580px;
    margin: 80px 0 0 -30px;
    justify-content: start;
}

/* Grid adicional para os novos quadrados do SiloBom */
.corn-info-grid-additional {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    width: 580px;
    margin-left: -30px;
}

.corn-info-card {
    border: 2px solid #80694D;
    background: transparent;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 180px;
    height: 180px;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: default;
}

.corn-info-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.corn-info-image img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.corn-info-card:hover .corn-info-image img {
    transform: scale(0.85);
}

.corn-info-text {
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    text-align: center;
}

.corn-info-text p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 140px;
    text-align: center;
}

.corn-info-text p:first-child {
    margin-bottom: 8px;
    font-size: 12px;
}

.corn-info-value {
    font-weight: bold !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    text-align: center;
}

.coronel-title {
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 1000;
    color: #80694D;
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0;
}

.coronel-description {
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 40px;
    max-width: 500px;
    word-wrap: break-word;
    hyphens: auto;
}

.pontos-fortes-title {
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #80694D;
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
}

.pontos-fortes-list {
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
    color: #FFFFFF;
    margin-left: 20px;
    list-style: none;
    padding: 0;
}

.pontos-fortes-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    word-wrap: break-word;
    hyphens: auto;
}

.pontos-fortes-list li:first-child {
    max-width: 400px;
}

/* Product Logo */
.product-logo {
    margin-bottom: 30px;
    text-align: left;
}

.product-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.pontos-fortes-list li::before {
    content: "•";
    color: #FFFFFF;
    font-weight: 800;
    position: absolute;
    left: 0;
}

.folder-digital-btn {
    background: var(--deep-blue);
    color: white;
    border: none;
    padding: 15px 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 30px;
    margin-left: 0;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.folder-digital-btn:hover {
    background: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}

/* Coronel Images Section */
.coronel-images-section {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

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

.coronel-image-card {
    border: 4px solid #80694D;
    border-radius: 8px;
    padding: 0;
    background: transparent;
    transition: transform 0.3s ease;
    width: 350px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coronel-image-card:hover {
    transform: translateY(-3px);
}

.coronel-image-card {
    cursor: pointer;
}

.coronel-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Responsividade para imagens do portfólio */
@media (max-width: 1366px) {
    .coronel-image-card {
        width: 320px;
        height: 230px;
    }
    
    .coronel-image-grid {
        gap: 25px;
    }
    
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .portfolio-section .section-text {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 35px;
    }
}

@media (max-width: 1024px) {
    .coronel-image-card {
        width: 300px;
        height: 215px;
    }
    
    .coronel-image-grid {
        gap: 20px;
    }
    
    .portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-section .section-title {
        font-size: 30px;
        margin-bottom: 35px;
    }
    
    .portfolio-section .section-text {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .coronel-image-card {
        width: 280px;
        height: 200px;
    }
    
    .coronel-image-grid {
        gap: 15px;
        justify-content: center;
    }
    
    .portfolio-section {
        padding: 40px 0;
    }
    
    .portfolio-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .portfolio-section .section-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #80694D;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(128, 105, 77, 0.8);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(128, 105, 77, 1);
    transform: scale(1.1);
}

/* Lightbox Responsive Styles */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 15px;
        width: 95%;
        height: 95%;
    }
    
    .lightbox-close {
        font-size: 28px;
        top: 8px;
        right: 12px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        padding: 10px;
        width: 98%;
        height: 98%;
    }
    
    .lightbox-close {
        font-size: 24px;
        top: 5px;
        right: 8px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding: 10px 14px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Simple Divider Line */
.simple-divider {
    width: 170%;
    height: 1px;
    border-top: 3px dotted #80694D;
    margin: 80px 100px 60px -390px;
}



/* Responsive Design for Milho Page */
@media (max-width: 768px) {
    /* Touch-friendly improvements */
    .corn-info-card,
    .coronel-image-card,
    .folder-digital-btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Header Responsive */
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        padding: 0 20px;
        justify-content: space-between;
        gap: 20px;
    }
    
    .logo {
        max-width: 100px;
        flex-shrink: 0;
    }
    
    .nav-menu {
        display: none;
    }
    

    

    
    /* Hero Section */
    .milho-hero-section {
        padding: 40px 0;
        margin-top: 80px; /* Compensar altura do header fixo */
        min-height: 50vh;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background-attachment: scroll;
        background-position: center center; /* Ajustar posição para mobile */
    }
    
    .milho-hero-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }
    
    .milho-hero-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        padding: 0 15px;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Content Section */
    .milho-content-section {
        background-attachment: scroll;
    }
    
    .milho-content-section .container {
        margin: 0;
        padding: 0 20px 40px;
    }
    
    /* Video Section */
    .video-section {
        max-width: 100%;
        margin: 30px 0 20px 0;
        padding: 0;
    }
    
    .video-container {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .video-description p {
        font-size: 16px;
        padding: 0;
        line-height: 1.4;
    }
    
    /* Content Wrapper */
    .milho-content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }
    
    .milho-content-left,
    .milho-content-right {
        max-width: 100%;
        width: 100%;
    }
    
    .milho-content-right {
        max-width: 100%;
        min-width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Corn Info Grid */
    .corn-info-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0 0;
        justify-content: center;
    }
    
    /* Grid adicional */
    .corn-info-grid-additional {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 12px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .corn-info-card {
        width: 100%;
        height: 180px;
        padding: 15px;
        box-sizing: border-box;
    }
    
    .corn-info-image img {
        max-width: 65px;
        max-height: 65px;
        transition: transform 0.3s ease;
    }
    
    .corn-info-card:hover .corn-info-image img {
        transform: scale(0.85);
    }
    
    .corn-info-text p {
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        margin: 0 auto;
    }
    
    .corn-info-value {
        font-size: 12px !important;
        line-height: 1.1;
        text-align: center;
    }
    
    /* Titles and Text */
    .coronel-title {
        font-size: 24px;
        text-align: center;
        margin: 0 auto 20px auto;
        line-height: 1.2;
    }
    
    .pontos-fortes-title {
        font-size: 18px;
        text-align: center;
        margin: 0 auto 15px auto;
    }
    
    .pontos-fortes-list {
        margin: 0 auto;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .pontos-fortes-list li {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 10px;
        text-align: left;
        padding-left: 25px;
    }
    
    .pontos-fortes-list li:first-child {
        max-width: 100%;
    }
    
    .coronel-description {
        max-width: 100%;
        text-align: center;
        font-size: 15px;
        line-height: 1.5;
        padding: 0 10px;
        margin: 0 auto 25px auto;
    }
    
    /* Product Logo */
    .product-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .product-logo-img {
        max-height: 60px;
        max-width: 100%;
    }
    
    /* Button */
    .folder-digital-btn {
        width: 100%;
        max-width: 250px;
        margin: 25px auto 0 auto;
        display: block;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    /* Divider */
    .simple-divider {
        width: calc(100% - 40px);
        margin: 40px 20px 30px 20px;
    }
    
    /* Images Section */
    .coronel-images-section {
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .coronel-images-grid {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .coronel-image-card {
        width: 100%;
        max-width: 100%;
        height: 180px;
        margin: 0;
    }
    
    /* Lightbox */
    .lightbox-close {
        font-size: 28px;
        top: 10px;
        right: 15px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    

}

@media (max-width: 480px) {
    /* Hero Section */
    .milho-hero-section {
        padding: 30px 0;
        margin-top: 80px; /* Compensar altura do header fixo */
        min-height: 40vh;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ajuste específico para telas muito pequenas (iPhone 12 Pro, etc.) */
    @media (max-width: 390px) {
        .milho-hero-section {
            margin-top: 70px; /* Reduzir margem para telas muito pequenas */
            padding: 25px 0;
            min-height: 35vh;
        }
        
        .milho-hero-title {
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            padding: 0 8px;
        }
        
        .milho-hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
        }
    }
    
    /* Footer Responsive */
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
    
    .footer-section {
        max-width: 100%;
    }
    
    .footer-social {
        text-align: left;
        gap: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .milho-hero-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    
    .milho-hero-title {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
        padding: 0 10px;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Content Section */
    
    .milho-content-section .container {
        padding: 0 15px 40px;
    }
    
    /* Video Section */
    .video-section {
        margin: 25px 0 15px 0;
        padding: 0;
    }
    
    .video-container {
        margin-bottom: 12px;
        border-radius: 6px;
    }
    
    .video-description p {
        font-size: 13px;
        padding: 0;
        line-height: 1.3;
    }
    
    /* Content Wrapper */
    .milho-content-wrapper {
        gap: 25px;
        padding: 0;
    }
    
    /* Corn Info Grid */
    .corn-info-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 150px);
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin: 15px 0 0 0;
        justify-content: center;
    }
    
    /* Grid adicional */
    .corn-info-grid-additional {
        gap: 10px;
        margin-top: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .corn-info-card {
        height: 150px;
        padding: 12px;
    }
    
    .corn-info-image img {
        max-width: 55px;
        max-height: 55px;
    }
    
    .corn-info-text p {
        font-size: 10px;
        line-height: 1.1;
        text-align: center;
        margin: 0 auto;
    }
    
    .corn-info-value {
        font-size: 11px !important;
        line-height: 1.0;
        text-align: center;
    }
    
    /* Titles and Text */
    .coronel-title {
        font-size: 20px;
        margin: 0 auto 15px auto;
        line-height: 1.2;
    }
    
    .pontos-fortes-title {
        font-size: 16px;
        margin: 0 auto 12px auto;
    }
    
    .pontos-fortes-list {
        padding: 0 15px;
    }
    
    .pontos-fortes-list li {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
        padding-left: 20px;
    }
    
    .coronel-description {
        font-size: 14px;
        line-height: 1.4;
        padding: 0 8px;
        margin: 0 auto 20px auto;
    }
    
    /* Product Logo */
    .product-logo {
        margin-bottom: 15px;
    }
    
    .product-logo-img {
        max-height: 50px;
    }
    
    /* Button */
    .folder-digital-btn {
        max-width: 220px;
        margin: 20px auto 0 auto;
        font-size: 13px;
        padding: 10px 18px;
    }
    
    /* Divider */
    .simple-divider {
        width: calc(100% - 30px);
        margin: 30px 15px 25px 15px;
    }
    
    /* Images Section */
    .coronel-images-section {
        margin-top: 25px;
        padding: 0 15px;
    }
    
    .coronel-images-grid {
        gap: 12px;
    }
    
    .coronel-image-card {
        height: 160px;
    }
    
    /* Lightbox */
    .lightbox-close {
        font-size: 24px;
        top: 8px;
        right: 12px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .milho-content-section .container {
        margin: 0;
        padding: 0 40px 40px;
    }
    
    .milho-content-wrapper {
        gap: 50px;
        max-width: 100%;
    }
    
    .milho-content-left {
        max-width: 55%;
    }
    
    .milho-content-right {
        max-width: 45%;
        min-width: 450px;
    }
    
    .corn-info-grid {
        width: 100%;
        max-width: 100%;
        margin: 150px 0 0 0;
    }
    
    .corn-info-grid-additional {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    
    .video-section {
        max-width: 90%;
        margin: 50px auto 30px auto;
    }
    
    .coronel-title {
        font-size: 32px;
    }
    
    .coronel-description {
        font-size: 17px;
        max-width: 90%;
    }
    
    .pontos-fortes-list li {
        font-size: 17px;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    /* Container adjustments */
    .container {
        padding: 0 10px;
    }
    
    /* Hero Section */
    .milho-hero-section {
        padding: 25px 0;
        min-height: 35vh;
    }
    
    .milho-hero-title {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        padding: 0 8px;
    }
    
    .milho-content-section {
        padding: 25px 0;
    }
    
    .milho-content-section .container {
        padding: 0 10px 40px;
    }
    
    .video-section {
        margin: 20px 0 10px 0;
    }
    
    .video-description p {
        font-size: 12px;
    }
    
    .corn-info-grid {
        grid-template-rows: repeat(6, 120px);
        gap: 8px;
    }
    
    .corn-info-card {
        height: 120px;
        padding: 10px;
    }
    
    .corn-info-image img {
        max-width: 50px;
        max-height: 50px;
    }
    
    .corn-info-text p {
        font-size: 9px;
        text-align: center;
        margin: 0 auto;
    }
    
    .corn-info-value {
        font-size: 10px !important;
        text-align: center;
    }
    
    .coronel-title {
        font-size: 18px;
        margin: 0 auto 12px auto;
    }
    
    .pontos-fortes-title {
        font-size: 15px;
        margin: 0 auto 10px auto;
    }
    
    .pontos-fortes-list {
        padding: 0 10px;
    }
    
    .pontos-fortes-list li {
        font-size: 13px;
        margin-bottom: 6px;
        padding-left: 15px;
    }
    
    .coronel-description {
        font-size: 13px;
        padding: 0 5px;
        margin: 0 auto 15px auto;
    }
    
    .folder-digital-btn {
        max-width: 200px;
        margin: 15px auto 0 auto;
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .simple-divider {
        width: calc(100% - 20px);
        margin: 25px 10px 20px 10px;
    }
    
    .coronel-images-section {
        margin-top: 20px;
        padding: 0 10px;
    }
    
    .coronel-image-card {
        height: 140px;
    }
    
    .lightbox-content {
        padding: 8px;
        width: 99%;
        height: 99%;
    }
    
    .lightbox-close {
        font-size: 20px;
        top: 3px;
        right: 5px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Franchise Section */
.franchise-section {
    padding: 70px 0;
    background: url('img/textura.jpg.webp');
    background-size: auto;
    background-position: bottom center;
    background-repeat: repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 174, 65, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(45, 174, 65, 0.03) 0%, transparent 40%),
        linear-gradient(135deg, rgba(45, 174, 65, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.franchise-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.franchise-header {
    margin-bottom: 40px;
}

.franchise-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.franchise-brand {
    color: var(--color-primary);
    position: relative;
}

.franchise-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-yellow);
    border-radius: 2px;
}



.franchise-description {
    margin-bottom: 50px;
    padding: 0 20px;
}

.franchise-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.franchise-cta {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    color: var(--color-primary);
    margin: 0 0 40px 0;
}

/* Mission & Stats mantidos do design original */
.mission-stats-compact {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.mission-title-compact {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.stats-row-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item-compact {
    text-align: center;
}

.stat-number-compact {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-text-compact {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0;
}

/* Franchise Info Section */
.franchise-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.franchise-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(45, 174, 65, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(45, 174, 65, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.franchise-info-content {
    position: relative;
    z-index: 1;
}

.franchise-info-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.franchise-info-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--golden-yellow);
    border-radius: 2px;
}

.franchise-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.franchise-info-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.franchise-info-number {
    width: 50px;
    height: 50px;
    background: #024032;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(2, 64, 50, 0.4);
    margin: 0 auto 15px;
    z-index: 10;
}

.franchise-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgb(255, 215, 0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.franchise-info-item:hover::before {
    transform: scaleX(1);
}

.franchise-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.franchise-info-emoji {
    font-size: 3rem;
    margin: 0 auto 20px;
    line-height: 1;
    display: block;
    text-align: center;
}

.franchise-info-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.franchise-info-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.franchise-contact {
    text-align: center;
}

.franchise-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgb(255, 215, 0);
    color: black;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.franchise-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    background: rgb(255, 225, 20);
    color: black;
    text-decoration: none;
}

.franchise-contact-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .franchise-section {
        padding: 50px 0;
    }
    
    .franchise-header {
        margin-bottom: 30px;
    }
    
    .franchise-description {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    

    
    .stats-row-compact {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .franchise-info-section {
        padding: 60px 0;
    }
    
    .franchise-info-title {
        margin-bottom: 50px;
    }
    
    .franchise-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .franchise-info-item {
        padding: 30px 15px;
    }
    
    .franchise-contact-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .franchise-section {
        padding: 30px 0;
    }
    
    .franchise-title {
        margin-bottom: 20px;
    }
    

    
    .franchise-info-grid {
        grid-template-columns: 1fr;
    }
    
    .franchise-contact-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(46, 125, 50, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-content {
    position: relative;
    z-index: 1;
}

.benefits-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--golden-yellow);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Centralizar o último card quando ímpar */
.benefit-card:nth-child(7) {
    grid-column: 2;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgb(255, 215, 0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
}

.benefit-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Benefits */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-card:nth-child(7) {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-title {
        margin-bottom: 50px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card:nth-child(7) {
        grid-column: 1;
        justify-self: stretch;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefit-card {
        padding: 30px 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-text {
        font-size: 0.95rem;
    }
}

/* Scroll reveal animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease-out;
    }
    
    .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s ease-out;
    }
    
    .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Franchise Banner Section */
.franchise-banner-section {
    padding: 0; /* Sem padding para eliminar espaços brancos */
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100vw; /* Largura total da viewport */
    margin-left: calc(-50vw + 50%); /* Estender além dos limites do container pai */
}

.franchise-banner-content {
    position: relative;
    width: 100vw; /* Largura total da viewport */
    margin: 0; /* Remover margens */
    border-radius: 0; /* Remover bordas arredondadas */
    overflow: hidden;
    box-shadow: none; /* Remover sombra para imagem cobrir completamente */
    padding: 0; /* Sem padding para eliminar espaços brancos */
    margin-left: calc(-50vw + 50%); /* Estender além dos limites do container pai */
}

/* Removido efeito de hover para eliminar animação */

.franchise-banner-image {
    width: 100%; /* Largura total do container pai */
    display: block;
    object-fit: contain; /* Mostrar imagem inteira sem cortar */
}

/* Overlay e textos removidos - apenas a imagem permanece */

/* Responsive adjustments for franchise banner */
@media (max-width: 768px) {
    .franchise-banner-section {
        padding: 0; /* Manter sem padding para imagem cobrir completamente */
        width: 100%;
    }
    
    .franchise-banner-content {
        margin: 0; /* Manter sem margens */
        border-radius: 0; /* Manter sem bordas arredondadas */
    }
}

@media (max-width: 480px) {
    .franchise-banner-section {
        padding: 0; /* Manter sem padding para imagem cobrir completamente */
        width: 100%;
    }
    
    .franchise-banner-content {
        margin: 0; /* Manter sem margens */
    }
}

/* Seção de Perguntas Frequentes (FAQ) */
.faq-section {
    padding: 10px 0;
}

.faq-title {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #80694D;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #80694D;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #9B7B5A;
    box-shadow: 0 4px 15px rgba(128, 105, 77, 0.3);
}

.faq-question {
    padding: 25px 30px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: rgba(128, 105, 77, 0.1);
}

.faq-question.active {
    background: rgba(128, 105, 77, 0.15);
    border-bottom-color: #80694D;
}

.faq-question span {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #80694D;
    line-height: 1.4;
    flex: 1;
    margin-right: 20px;
}

.faq-icon {
    font-size: 18px;
    color: #80694D;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: transparent;
    padding: 0 30px;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 30px;
}

.faq-answer p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    padding: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0 0 20px 0;
    padding: 0 0 0 20px;
}

.faq-answer li {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #80694D;
    font-weight: 600;
}

/* Responsividade para FAQ */
@media (max-width: 1366px) {
    .faq-section {
        padding: 50px 30px;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 45px;
    }
    
    .faq-container {
        max-width: 700px;
    }
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 45px 25px;
    }
    
    .faq-title {
        font-size: 30px;
        margin-bottom: 42px;
    }
    
    .faq-container {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
        padding: 0 25px;
    }
    
    .faq-answer ul {
        padding: 0 25px 0 40px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 15px;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .faq-answer ul {
        padding: 0 20px 0 35px;
    }
}

/* Elemento Milho Banner */
.elemento-milho-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.elemento-milho-img {
    width: 100vw;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    object-fit: cover;
}

/* Responsividade para Elemento Milho Banner */
@media (max-width: 1366px) {
    .elemento-milho-banner {
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 1024px) {
    .elemento-milho-banner {
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .elemento-milho-banner {
        margin: 0;
        padding: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
    }
    
    .elemento-milho-img {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .elemento-milho-banner {
        margin: 0;
        padding: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100vw;
    }
    
    .elemento-milho-img {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        object-fit: cover;
    }
}

/* Banner Principal Biológicos */
.biologicos-banner {
    width: 100%;
    margin-top: 70px; /* Compensar altura do header fixo */
    padding: 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    height: 500px;
}

/* Conteúdo principal da página de biológicos */
.main-content {
    padding: 20px 0; /* Reduzir o padding vertical */
    min-height: auto; /* Remover altura mínima */
}

/* Seção de Apresentação dos Biológicos */
.biologicos-apresentacao {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.biologicos-apresentacao-content {
    max-width: 1200px;
    margin: 0 auto;
}

.biologicos-apresentacao-title {
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
    font-weight: bolder;
    color: #54595F;
    margin-bottom: 50px;
    line-height: 2em;
}

.biologicos-apresentacao-text {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    line-height: 2em;
    color: #54595F;
    margin-bottom: 50px;
    font-weight: 400;
}

.biologicos-apresentacao-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.biologicos-apresentacao-button {
    background: #0047BB;
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

.biologicos-apresentacao-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    text-decoration: none;
}

.biologicos-apresentacao-button:active {
    transform: translateY(0);
    text-decoration: none;
}

.biologicos-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    
    /* Otimizações de qualidade de imagem */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
}

/* Overlay de texto do banner */
.biologicos-banner-text-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.biologicos-banner-title {
    font-family: "Montserrat", sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    background: #009A44;
    padding: 0px 250px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
}

.biologicos-banner-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

/* Responsividade para Banner Biológicos */
@media (max-width: 1024px) {
    .biologicos-banner {
        padding: 0;
        height: 400px;
    }
    
    .biologicos-banner-image {
        width: 100%;
        height: 400px;
    }
    
    .main-content {
        padding: 15px 0;
    }
    
    .biologicos-banner-title {
        font-size: 42px;
        padding: 0px 120px;
    }
    
    .biologicos-banner-subtitle {
        font-size: 24px;
    }
    
    .biologicos-apresentacao {
        padding: 60px 0;
    }
    
    .biologicos-apresentacao-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .biologicos-apresentacao-text {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .produtos-lista {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }
    
    .produto-img {
        width: 100%;
        height: 220px;
    }
    
    .produto-titulo {
        font-size: 20px;
    }
    
    .produto-descricao {
        font-size: 14px;
    }
    
    .produtos-lista.segunda-linha,
    .produtos-lista.terceira-linha {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .biologicos-banner {
        padding: 0;
        height: 350px;
    }
    
    .biologicos-banner-image {
        width: 100%;
        height: 350px;
    }
    
    .main-content {
        padding: 10px 0;
    }
    
    .biologicos-banner-title {
        font-size: 36px;
        padding: 0px 80px;
    }
    
    .biologicos-banner-subtitle {
        font-size: 20px;
    }
    
    .biologicos-apresentacao {
        padding: 40px 0;
    }
    
    .biologicos-apresentacao-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .biologicos-apresentacao-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .biologicos-apresentacao-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .produtos-lista {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 30px;
    }
    
    .produto-img {
        width: 100%;
        height: 180px;
    }
    
    .produto-titulo {
        font-size: 18px;
    }
    
    .produto-descricao {
        font-size: 13px;
    }
    
    .produtos-lista.segunda-linha,
    .produtos-lista.terceira-linha {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .biologicos-banner {
        padding: 0;
    }
    
    .biologicos-banner-image {
        width: 100%;
    }
    
    .main-content {
        padding: 5px 0;
    }
    
    .biologicos-banner-title {
        font-size: 28px;
        padding: 0px 60px;
    }
    
    .biologicos-banner-subtitle {
        font-size: 18px;
    }
    
    .biologicos-apresentacao {
        padding: 30px 0;
    }
    
    .biologicos-apresentacao-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .biologicos-apresentacao-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .biologicos-apresentacao-button {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

/* Estilos para Seção de Produtos Biológicos */
.biologicos-produtos {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.produtos-lista {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
    width: 100%;
}

.produtos-lista.segunda-linha {
    margin-top: 80px;
}

.produtos-lista.terceira-linha {
    margin-top: 80px;
    justify-content: center;
}

.produto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    max-width: 350px;
}

.produto-imagem {
    width: 100%;
    display: flex;
    justify-content: center;
}

.produto-img {
    width: 350px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

.produto-conteudo {
    flex: 1;
}

.produto-logo {
    margin-bottom: 25px;
    text-align: left;
}

.produto-logo-img {
    max-width: 200px;
    height: auto;
}

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

.produto-titulo {
    text-align: justify;
    font-family: "Montserrat", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--e-global-color-48ad8c9);
    margin-bottom: 15px;
    line-height: 1.3;
}

.produto-descricao {
    text-align: left;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: var(--e-global-color-secondary);
    margin: 0;
}

/* Responsividade para Produtos Biológicos */
@media (max-width: 768px) {
    .biologicos-produtos {
        padding: 60px 0;
    }
    
    .produtos-lista {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 30px;
    }
    
    .produto-item {
        gap: 20px;
    }
    
    .produto-img {
        width: 220px;
        height: 220px;
    }
    
    .produto-titulo {
        font-size: 22px;
    }
    
    .produto-descricao {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .biologicos-banner {
        padding: 0;
        height: 300px;
    }
    
    .biologicos-banner-image {
        width: 100%;
        height: 300px;
    }
    
    .biologicos-banner-title {
        font-size: 28px;
        padding: 0px 40px;
    }
    
    .biologicos-banner-subtitle {
        font-size: 18px;
    }
    
    .biologicos-apresentacao {
        padding: 30px 0;
    }
    
    .biologicos-apresentacao-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .biologicos-apresentacao-text {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .biologicos-apresentacao-button {
        padding: 14px 30px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .produtos-lista {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }
    
    .produto-item {
        text-align: left;
        align-items: flex-start;
    }
    
    .produto-img {
        width: 100%;
        height: 160px;
    }
    
    .produto-titulo {
        font-size: 16px;
    }
    
    .produto-descricao {
        font-size: 12px;
    }
    
    .produtos-lista.segunda-linha,
    .produtos-lista.terceira-linha {
        margin-top: 30px;
    }
}

/* Estilos para Seção de Perguntas Frequentes */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #54595F;
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
}

/* Estilos específicos para FAQ da página milho */
.milho-content-section .faq-section {
    background: transparent;
}

.milho-content-section .faq-title {
    color: #80694D;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    position: relative;
}

.milho-content-section .faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #80694D 0%, #a67c52 100%);
    border-radius: 2px;
}

.milho-content-section .faq-item {
    background: transparent !important;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.milho-content-section .faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.milho-content-section .faq-question {
    padding: 25px 30px;
    background: transparent !important;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.milho-content-section .faq-question:hover {
    background: transparent !important;
}





.milho-content-section .faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.milho-content-section .faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #80694D;
}

.milho-content-section .faq-item.active .faq-icon {
    transform: rotate(45deg) !important;
    color: #80694D !important;
}

.milho-content-section .faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}



.milho-content-section .faq-item.active .faq-answer {
    padding: 30px !important;
    max-height: 1000px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.milho-content-section .faq-answer p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.milho-content-section .faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.milho-content-section .faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: white;
    font-family: "Montserrat", sans-serif;
}

.milho-content-section .faq-answer strong {
    color: #80694D;
    font-weight: 600;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #0047BB;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #003a9e;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #54595F;
    font-family: "Montserrat", sans-serif;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #54595F;
    font-family: "Montserrat", sans-serif;
}

.faq-answer strong {
    color: #0047BB;
    font-weight: 600;
}

/* ===== ESTILOS PARA PÁGINA FALE CONOSCO ===== */

/* Banner Fale Conosco */
.fale-conosco-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    z-index: 1;
}

.fale-conosco-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fale-conosco-banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.fale-conosco-banner-title {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.fale-conosco-banner-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Seção de Conteúdo Fale Conosco */
.fale-conosco-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 5;
}

.fale-conosco-content {
    max-width: 1000px;
    margin: 0 auto;
}

.fale-conosco-content-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #80694D;
    text-align: center;
    margin-bottom: 30px;
}

.fale-conosco-content-text {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #54595F;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Grid de Informações de Contato */
.contato-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contato-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contato-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contato-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #80694D 0%, #a67c52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contato-info-icon i {
    font-size: 2rem;
    color: white;
}

.contato-info-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #80694D;
    margin-bottom: 15px;
}

.contato-info-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    color: #54595F;
    line-height: 1.6;
}

.contato-info-content a {
    color: #80694D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-info-content a:hover {
    color: #a67c52;
}

/* Seção do Formulário */
.contato-form-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contato-form-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #80694D;
    text-align: center;
    margin-bottom: 40px;
}

.contato-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #54595F;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #80694D;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-form-btn {
    background: linear-gradient(135deg, #80694D 0%, #a67c52 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 200px;
}

.contato-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 105, 77, 0.3);
}

/* Responsividade para Fale Conosco */
@media (max-width: 768px) {
    .fale-conosco-banner-title {
        font-size: 2.5rem;
    }
    
    .fale-conosco-banner-subtitle {
        font-size: 1.2rem;
    }
    
    .fale-conosco-content-title {
        font-size: 2rem;
    }
    
    .contato-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contato-form-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .fale-conosco-banner {
        height: 50vh;
        min-height: 300px;
    }
    
    .fale-conosco-banner-title {
        font-size: 2rem;
    }
    
    .fale-conosco-content-section {
        padding: 0px 0;
    }
    
    .contato-info-card {
        padding: 30px 20px;
    }
}

/* Responsividade para FAQ */
@media (max-width: 768px) {
    .milho-content-section .faq-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 40px;
    }
    
    .milho-content-section .faq-question {
        padding: 25px 25px;
    }
    
    .milho-content-section .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .milho-content-section .faq-answer {
        padding: 0 25px;
    }
    
    .milho-content-section .faq-item.active .faq-answer {
        padding: 25px;
    }
    
    .milho-content-section .faq-answer li::before {
        left: -25px;
    }
}

@media (max-width: 480px) {
    .milho-content-section .faq-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .milho-content-section .faq-question {
        padding: 20px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .milho-content-section .faq-question h3 {
        font-size: 1rem;
    }
    
    .milho-content-section .faq-answer {
        padding: 0 20px;
    }
    
    .milho-content-section .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

/* ===== NOVO LAYOUT DE DUAS COLUNAS PARA FALE CONOSCO ===== */

.fale-conosco-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Coluna do Formulário Verde */
.form-column {
    display: flex;
    flex-direction: column;
    position: relative;
}

.contact-form-green {
    background: #00AD57;
    width: 570px;
    height: 815px;
    border-radius: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #fff0;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: -10rem 0rem 0rem 0rem;
    --e-column-margin-right: 0rem;
    --e-column-margin-left: 0rem;
    padding: 30px 30px 30px 30px;
    color: white;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 10;
    overflow: hidden;
    box-sizing: border-box;
}

.form-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    flex-shrink: 0;
    height: 120px;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon i {
    font-size: 1.5rem;
    color: white;
}

.form-header-content {
    flex: 1;
}

.form-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
}

.form-header p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100% - 120px);
    overflow: hidden;
}

.contact-form .form-group {
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-form .form-group-full {
    grid-column: 1 / -1;
    width: 100%;
}




/* ===== NOVO FORMULÁRIO COMPLETO ===== */

/* Estilos para todos os campos do formulário */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #2E7D32;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    background: white;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border: 2px solid #1B5E20;
    background: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

/* Grupo de telefone */
.phone-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}

/* Sobrescrever a regra global que força flex-direction: column */
.phone-group.form-group {
    flex-direction: row !important;
}

.pais-select {
    min-width: 120px;
    max-width: 120px;
    cursor: pointer;
    text-align: center;
    flex-shrink: 0;
}

.phone-group input {
    flex: 1;
    max-width: 280px;
    flex-shrink: 1;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

/* Textarea */
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botão de envio */
.submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 18px 40px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    align-self: center;
}

.submit-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* Coluna de Informações */
.info-column {
    display: flex;
    flex-direction: column;
}

.contact-info-content {
    background: transparent;
    border-radius: 20px;
    height: fit-content;
}

.contact-info-content h2 {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #00AD57;
    margin-bottom: 5px;
    text-align: left;
}

.contact-details {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 1rem;
    color: #54595F;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 8px;
    text-align: left;
}

.contact-value {
    font-size: 1.2rem;
    color: #54595F;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-align: left;
}

/* Mapa do Google */
.google-maps-container {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    position: relative;
}

.google-maps-container iframe {
    border-radius: 15px;
}

.map-info-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    z-index: 10;
}

.map-info h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.map-info p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.4;
    margin-bottom: 15px;
}

.map-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.rating {
    font-weight: 600;
    color: var(--dark-gray);
}

.map-link {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--secondary-green);
}

/* Redes Sociais */
.social-media-section {
    text-align: center;
}

.social-media-section h3 {
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    color: #00AD57;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    background: #00AD57;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsividade para o novo layout */
@media (max-width: 1024px) {
    .fale-conosco-two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 800px;
    }
    
    .contact-form-green {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 30px;
    }
    
    .contact-info-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .fale-conosco-two-column-layout {
        padding: 0 15px;
        gap: 25px;
    }
    
    .contact-form-green {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 25px 20px;
    }
    
    .contact-info-content {
        padding: 25px 20px;
    }
    
    .form-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .contact-info-panel h2 {
        font-size: 1.8rem;
    }
    
    .phone-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-prefix {
        justify-content: center;
        min-width: auto;
    }
    
    .social-media-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .fale-conosco-two-column-layout {
        padding: 0 10px;
        gap: 20px;
    }
    
    .contact-form-green {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 20px 15px;
    }
    
    .contact-info-panel {
        padding: 20px 15px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .contact-info-panel h2 {
        font-size: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    /* Botões de redes sociais do rodapé - versão tablet */
    .footer-social .social-link {
        width: 52px;
        height: 52px;
        line-height: 52px;
        font-size: 26px;
        margin: 0 10px 0 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    /* Botões de redes sociais do rodapé - versão mobile */
    .footer-social .social-link {
        width: 56px;
        height: 56px;
        line-height: 56px;
        font-size: 28px;
        margin: 0 8px 0 0;
    }
    
    /* Reduzir espaço entre endereço e redes sociais no mobile */
    .footer-social {
        margin-bottom: 30px;
        padding-bottom: 20px;
        text-align: center;
    }
}

/* Seção de Dúvidas Frequentes na página Fale Conosco */
.fale-conosco-content-section + .faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 5;
}

/* Garantir que a navegação desktop tenha o mesmo estilo em todas as páginas */
.header .desktop-nav,
.biologicos .header .desktop-nav,
.milho .header .desktop-nav,
.fale-conosco .header .desktop-nav {
    display: flex !important;
    flex: 1 !important;
    justify-content: flex-start !important;
    margin-left: 170px !important;
}

/* Sobrescrever para mobile - esconder navegação desktop */
@media (max-width: 768px) {
    .header .desktop-nav,
    .biologicos .header .desktop-nav,
    .milho .header .desktop-nav,
    .fale-conosco .header .desktop-nav {
        display: none !important;
    }
    
    /* Garantir que o botão mobile seja visível */
    .mobile-menu-btn {
        display: flex !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    /* Garantir que o menu mobile funcione */
    .mobile-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
}

/* ===== RESPONSIVIDADE MOBILE PARA PÁGINA FALE CONOSCO ===== */

@media (max-width: 1024px) {
    .fale-conosco-two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-form-green {
        width: 100%;
        height: auto;
        min-height: 700px;
        margin: -5rem 0 0 0;
        padding: 25px 25px 25px 25px;
    }
    
    .form-header {
        height: auto;
        min-height: 100px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .form-header p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    /* Banner responsivo */
    .fale-conosco-banner {
        margin-top: 70px;
        height: auto;
        min-height: auto;
    }
    
    .fale-conosco-banner-image {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: cover;
        display: block;
    }
    
    /* Layout de duas colunas para mobile */
    .fale-conosco-two-column-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        max-width: 100%;
    }
    
    /* Formulário verde responsivo */
    .contact-form-green {
        width: 100%;
        height: auto;
        min-height: 650px;
        margin: -1rem 0 0 0;
        padding: 20px 20px 20px 20px;
        border-radius: 15px;
    }
    
    /* Header do formulário mobile */
    .form-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        height: auto;
        min-height: 80px;
        margin-bottom: 25px;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
    }
    
    .form-icon i {
        font-size: 1.2rem;
    }
    
    .form-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .form-header p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Formulário mobile */
    .contact-form {
        gap: 15px;
        height: auto;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    /* Grupo de telefone mobile */
    .phone-group {
        flex-direction: column !important;
        gap: 8px;
    }
    
    .pais-select {
        width: 100%;
        text-align: center;
    }
    
    /* Botão de envio mobile */
    .submit-btn {
        padding: 15px 20px;
        font-size: 16px;
        margin-top: 10px;
    }
    
    /* Coluna de informações mobile */
    .info-column {
        order: -1; /* Coloca as informações antes do formulário no mobile */
    }
    
    .contact-info-content h2 {
        font-size: 24px;
        text-align: left;
        margin-bottom: 20px;
    }
    
    /* Detalhes de contato mobile */
    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .contact-icon-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-label {
        font-size: 14px;
        color: #54595F;
        font-weight: 500;
        margin-bottom: 5px;
    }
    
    .contact-value {
        font-size: 16px;
        font-weight: 700;
        color: #54595F;
    }
    
    /* Mapa do Google mobile */
    .google-maps-container {
        margin: 20px 0;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .google-maps-container iframe {
        height: 250px;
    }
    
    /* Redes sociais mobile */
    .social-media-section {
        text-align: center;
        margin-top: 25px;
    }
    
    .social-media-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .social-media-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    /* Ajustes para dispositivos muito pequenos */
    .fale-conosco-two-column-layout {
        padding: 0 8px;
        gap: 15px;
    }
    
    .contact-form-green {
        margin: -2rem 0 0 0;
        padding: 18px 18px 18px 18px;
        border-radius: 12px;
    }
    
    .form-header {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .form-icon {
        width: 45px;
        height: 45px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    
    .form-header p {
        font-size: 13px;
    }
    
    .contact-form {
        gap: 12px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 10px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    .contact-item {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-label {
        font-size: 13px;
        color: #54595F;
        font-weight: 500;
    }
    
    .contact-value {
        font-size: 15px;
        color: #54595F;
        font-weight: 700;
    }
    
    .google-maps-container iframe {
        height: 200px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .social-media-section h3 {
        font-size: 16px;
    }
}

/* ===== RESPONSIVIDADE PARA SEÇÃO DE DÚVIDAS FREQUENTES ===== */

@media (max-width: 768px) {
    .fale-conosco-content-section + .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .faq-item {
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .fale-conosco-content-section + .faq-section {
        padding: 30px 0;
    }
    
    .faq-title {
        font-size: 22px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer.active {
        padding: 18px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
}

/* ===== ESTILOS PARA PÁGINA DE POLÍTICA DE PRIVACIDADE ===== */

/* Banner Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.banner-content {
    text-align: center;
    color: var(--white);
}

.banner-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Seção de Conteúdo da Política de Privacidade */
.politica-privacidade-content-section {
    padding: 80px 0;
    background: var(--white);
}

.politica-privacidade-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.politica-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #002D72;
}

.politica-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #002D72;
    margin-bottom: 15px;
}

.ultima-revisao {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-style: italic;
    margin: 0;
}

.politica-intro {
    margin-bottom: 50px;
}

.politica-intro p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.politica-intro ul {
    margin: 20px 0;
    padding-left: 30px;
}

.politica-intro li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.politica-section {
    margin-bottom: 50px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius-medium);
    border-left: 5px solid #002D72;
}

.politica-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #002D72;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.politica-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.politica-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.politica-section li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.politica-section strong {
    color: #002D72;
    font-weight: 600;
}

.contato-info {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-medium);
    border: 2px solid #002D72;
    margin-top: 20px;
}

.contato-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contato-info a {
    color: #002D72;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contato-info a:hover {
    color: #1565C0;
    text-decoration: underline;
}

/* Responsividade para Política de Privacidade */
@media (max-width: 768px) {
    .politica-privacidade-content-section {
        padding: 60px 0;
    }
    
    .politica-privacidade-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .politica-header h2 {
        font-size: 2rem;
    }
    
    .politica-section {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .politica-section h3 {
        font-size: 1.3rem;
    }
    
    .politica-section p,
    .politica-section li {
        font-size: 1rem;
    }
    
    .contato-info {
        padding: 20px;
    }
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: url('img/textura.jpg.webp');
    background-size: auto;
    background-position: bottom center;
    background-repeat: repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(45, 174, 65, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(45, 174, 65, 0.03) 0%, transparent 40%),
        linear-gradient(135deg, rgba(45, 174, 65, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    padding-right: 20px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: -0.02em;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-align: left;
}

.about-highlight {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--deep-blue);
    margin-top: 30px;
    text-align: left;
}

.about-highlight strong {
    font-weight: 700;
    color: var(--deep-blue);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-highlight {
        font-size: 1.1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-highlight {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .politica-privacidade-content-section {
        padding: 40px 0;
    }
    
    .politica-privacidade-content {
        padding: 0 15px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .politica-header h2 {
        font-size: 1.8rem;
    }
    
    .politica-header {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .politica-section {
        padding: 20px 15px;
        margin-bottom: 30px;
    }
    
    .politica-section h3 {
        font-size: 1.2rem;
    }
    
    .contato-info {
        padding: 15px;
    }
}

/* Aviso de posicionamento */
.aviso-posicionamento {
    font-size: 1.2rem;
    color: white;
    font-style: italic;
    margin: 30px 0;
}


