/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #2c5f2d;
    --primary-dark: #1a3a1b;
    --primary-light: #4a9b4d;
    --secondary-color: #f7941d;
    --accent-color: #00a651;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Impact', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

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

@media (min-width: 901px) {
    .container {
        padding: 0 2rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.458);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0;
    max-width: 100%;
    position: relative;
}

.nav-brand {
    position: absolute;
    left: 1rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.nav-brand a {
    text-decoration: none;
    display: block;
}

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.nav-brand p {
    font-size: 0.65rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -3px;
}

.nav-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.2);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(44, 95, 45, 0.3);
}

.nav-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    white-space: nowrap;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    height: 38px;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: var(--gray-100);
}

.nav-link-highlight {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    padding: 0.625rem 1rem;
    height: 38px;
}

.nav-link-highlight:hover {
    background-color: #e88419;
    color: var(--white);
    transform: none;
}

.nav-link-badge {
    position: relative;
}

.nav-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: rgba(255, 255, 255, 0.597);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.45rem;
    border-radius: 12px;
    margin-left: 0.4rem;
    display: inline-flex;
    align-items: center;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown .fa-chevron-down {
    font-size: 0.65rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 200px;
    padding: var(--spacing-xs);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
}

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

.dropdown-menu li a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

/* ===================================
   HERO SECTION
   =================================== */
/* MELHORIA: Hero com overflow hidden para conter efeitos decorativos */
.hero {
    position: relative;
    width: 100%;
    height: 106.9vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin: 0;
    overflow: hidden;
}

/* Gradiente de transição suave na base do hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Container dos slides de fundo */
.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Cada slide ocupa o hero inteiro e faz crossfade */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: blur(3px);
    animation: heroFade 25s infinite;
    will-change: opacity;
}

.hero-slide-1 {
    background-image: url('../css/img/asfalto.png');
    animation-delay: 0s;
}

.hero-slide-2 {
    background-image: url('../css/img/aterro.png');
    animation-delay: 5s;
}

.hero-slide-3 {
    background-image: url('../css/img/coleta12.png');
    animation-delay: 10s;
}

.hero-slide-4 {
    background-image: url('../css/img/gestao.png');
    animation-delay: 15s;
}

.hero-slide-5 {
    background-image: url('../css/img/roçada.png');
    animation-delay: 20s;
}

/* Animação crossfade: cada slide aparece por 5s do ciclo total de 25s */
@keyframes heroFade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    20%  { opacity: 1; }
    24%  { opacity: 0; }
    100% { opacity: 0; }
}
/* MELHORIA: Overlay com gradiente animado que pulsa sutilmente */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.65) 0%, rgba(26, 58, 27, 0.6) 100%);
    z-index: 1;
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

/* MELHORIA: Container de formas geométricas flutuantes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* MELHORIA: Formas individuais com gradientes coloridos e animações */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    top: 50%;
    right: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-light), transparent);
    bottom: -100px;
    left: 30%;
    animation: float 18s ease-in-out infinite 5s;
}

.hero-shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    top: 20%;
    right: 20%;
    animation: float 12s ease-in-out infinite 3s;
}

@keyframes 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);
    }
}

/* MELHORIA: Badge flutuante de destaque com glassmorphism */
.hero-badge {
    position: absolute;
    top: 120px;
    right: 5%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9d42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}

.badge-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-text strong {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

/* MELHORIA: Título com text-stroke, sombras múltiplas e animação de entrada */
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin: -3rem auto 1rem auto;
    line-height: 1.2;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.5rem;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 166, 81, 0.3),
        0 0 60px rgba(0, 166, 81, 0.2);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    /* CORREÇÃO: Animação de entrada para o título */
    opacity: 0;
    animation: fadeInTitle 1s ease-out 0.3s forwards;
}

/* CORREÇÃO: Animação específica para o título aparecer */
@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* MELHORIA: Sublinhado animado gradiente que se expande */
.hero-title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--secondary-color), 
        var(--accent-color), 
        var(--primary-light)
    );
    border-radius: 3px;
    /* CORREÇÃO: Delay ajustado para aparecer após o título */
    animation: expandUnderline 1.5s ease-out 1s forwards;
    box-shadow: 0 0 20px rgba(247, 148, 29, 0.6);
}

@keyframes expandUnderline {
    from {
        width: 0;
    }
    to {
        width: 200px;
    }
}

/* MELHORIA: Subtítulo com animação de fade-in com blur */
.hero-subtitle {
    font-size: 1.6rem;
    margin: 0 auto var(--spacing-lg) auto;
    opacity: 0;
    text-align: center;
    display: inline-block;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    /* CORREÇÃO: Delay ajustado para sequência correta */
    animation: fadeInBlur 1s ease-out 1.3s forwards;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero-buttons {
    display: inline-flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    opacity: 0;
    /* CORREÇÃO: Delay ajustado para aparecer por último */
    animation: fadeInUp 1s ease-out 2s forwards;
}

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

/* MELHORIA: Botões hero com glassmorphism e hover 3D */
.btn-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* MELHORIA: Efeito ripple no fundo do botão */
.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

/* MELHORIA: Hover 3D com múltiplas sombras e lift */
.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 5px 10px rgba(0, 166, 81, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(238, 238, 238, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.btn-hero.btn-primary {
    background: rgba(0, 166, 81, 0.3);
    border-color: var(--accent-color);
}

.btn-hero.btn-primary:hover {
    background: rgba(0, 166, 81, 0.5);
    box-shadow: 
        0 10px 25px rgba(0, 166, 81, 0.4),
        0 5px 10px rgba(0, 166, 81, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-hero.btn-secondary {
    background: rgba(247, 148, 29, 0.2);
    border-color: var(--secondary-color);
}

.btn-hero.btn-secondary:hover {
    background: rgba(247, 148, 29, 0.4);
    box-shadow: 
        0 10px 25px rgba(247, 148, 29, 0.4),
        0 5px 10px rgba(247, 148, 29, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.3);
}

/* MELHORIA: Ícones nos botões com animação */
.btn-hero i {
    transition: transform var(--transition-base);
}

.btn-hero:hover i {
    transform: translateX(-5px) scale(1.1);
}

/* MELHORIA: Scroll indicator elaborado com anel animado */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

/* MELHORIA: Anel decorativo que pulsa */
.scroll-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: var(--white);
}

/* MELHORIA: Texto decorativo do scroll indicator */
.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 0.5rem;
}

.scroll-indicator:hover .scroll-arrow {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator:hover .scroll-arrow i {
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* Hero variants for internal pages */
.hero-contato,
.hero-sustentabilidade {
    height: auto;
    min-height: auto;
    padding: 140px 0 80px;
    margin-top: 0;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background: transparent;
    padding: var(--spacing-md) 1rem;
    margin-top: -50px;
    position: relative;
    z-index: 4;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: transparent;
    border-radius: 20px;
    box-shadow: none;
    padding: 0;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem 1.8rem;
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    cursor: default;
    overflow: hidden;
}

/* Bordas arredondadas apenas nas pontas */
.stat-item:first-child {
    border-radius: 20px 0 0 20px;
}

.stat-item:last-child {
    border-radius: 0 20px 20px 0;
}

/* Linha de destaque no topo de cada card */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.4s ease, right 0.4s ease;
}

/* Brilho sutil animado no fundo */
.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(44, 95, 45, 0.15);
    background: rgba(255, 255, 255, 0.85);
    z-index: 2;
    border-radius: 20px;
}

.stat-item:hover::before {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.stat-item:hover::after {
    opacity: 1;
}

/* Divisor vertical entre itens */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(44, 95, 45, 0.15), transparent);
    pointer-events: none;
    opacity: 1;
}

.stat-item:hover + .stat-item::after,
.stat-item:hover::after {
    opacity: 0;
}

.stat-item i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   SECTION STYLES
   =================================== */
/* MELHORIA: Header com espaçamento aprimorado */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

/* MELHORIA: Título com sublinhado decorativo gradiente centralizado */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

/* MELHORIA: Linha decorativa sob todos os títulos de seção */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.450rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   ABOUT SECTION
   =================================== */
/* MELHORIA: Background com gradiente sutil e padrão decorativo */
.about-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* MELHORIA: Padrão decorativo de fundo */
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* MELHORIA: Título com sublinhado decorativo gradiente */
.about-content h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 1rem;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--gray-700);
    font-size: 1.05rem;
}

/* MELHORIA: Imagem com bordas arredondadas, sombra aprimorada e overlay no hover */
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: -4rem;
    position: relative;
}

/* MELHORIA: Overlay escuro que aparece no hover */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.7), rgba(0, 166, 81, 0.5));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* MELHORIA: Zoom mais pronunciado no hover */
.about-image:hover img {
    transform: scale(1.1);
}

/* CORREÇÃO: Botão visível na seção about (fundo claro) */
.about-content .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.about-content .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   SECTIONS SPACING
   =================================== */
.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--white);
}

/* ===================================
   VALUES SECTION
   =================================== */
/* MELHORIA: Background com gradiente vibrante e overlay decorativo */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* MELHORIA: Padrão geométrico decorativo */
.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    pointer-events: none;
}

/* MELHORIA: Título com sombra e destaque */
.values-section h2 {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.values-section .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* MELHORIA: Cards com efeito glassmorphism e animações aprimoradas */
.value-card {
    grid-column: span 2;
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(200, 230, 200, 0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* MELHORIA: Efeito de brilho que aparece no hover */
.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

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

.value-card:nth-child(4) {
    grid-column: 2 / 4;
}

.value-card:nth-child(5) {
    grid-column: 4 / 6;
}

/* MELHORIA: Hover aprimorado com lift, scale e sombra forte */
.value-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(0, 166, 81, 0.3);
    background: rgba(255, 255, 255, 1);
}

/* MELHORIA: Ícone com rotação e pulse no hover */
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.4);
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 166, 81, 0.6);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
/* MELHORIA: Background com gradiente suave */
.services-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5faf5 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
}

/* MELHORIA: Cards com bordas aprimoradas e efeitos de hover */
.service-card {
    grid-column: span 2;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

/* MELHORIA: Badge decorativo no canto superior */
.service-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-base);
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 166, 81, 0.4);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-card:nth-child(4) {
    grid-column: 2 / 4;
}

.service-card:nth-child(5) {
    grid-column: 4 / 6;
}

/* MELHORIA: Hover com lift pronunciado, borda colorida e sombra forte */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 25px rgba(0, 166, 81, 0.2);
    border-color: var(--accent-color);
}

/* MELHORIA: Imagem com overlay gradiente */
.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* MELHORIA: Zoom mais suave e pronunciado */
.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: var(--spacing-md);
    position: relative;
}

/* MELHORIA: Título com ícone decorativo e espaçamento */
.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.service-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: 1rem;
}

.service-list {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary-light);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   SUSTAINABILITY SECTION
   =================================== */
/* MELHORIA: Background com gradiente escuro para melhor contraste */
.sustainability-section {
    background: linear-gradient(rgba(26, 58, 27, 0.85), rgba(26, 58, 27, 0.9)),
                url("img/photo-1542601906990-b4d3fb778b09.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* MELHORIA: Efeito parallax sutil */
    padding: 100px 0;
    overflow: hidden;
    color: var(--white);
    border-radius: 30px 30px 0 0;
    text-align: center;
    position: relative;
}

/* MELHORIA: Overlay adicional para maior profundidade visual */
.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 58, 27, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.sustainability-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    flex-direction: column;
}

.sustainability-section .container {
    position: relative;
    z-index: 2;
}

/* MELHORIA: Título com efeito de destaque e sublinhado decorativo */
.sustainability-text h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* MELHORIA: Linha decorativa sob o título */
.sustainability-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.sustainability-text p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* MELHORIA: Grid responsivo para os cards (3 colunas em desktop, 2 em tablet, 1 em mobile) */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    position: relative;
    margin: 3rem 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Cada card ocupa 2 colunas (equivale a 3 por linha) */
.sustainability-grid > * {
    grid-column: span 2;
}

/* Centraliza os dois últimos cards na segunda linha */
.sustainability-grid > :nth-child(4) {
    grid-column: 2 / span 2;
}

.sustainability-grid > :nth-child(5) {
    grid-column: 4 / span 2;
}

/* MELHORIA: Cards com efeito glassmorphism (vidro fosco) */
.sustainability-card {
    background: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
    backdrop-filter: blur(10px); /* MELHORIA: Efeito de desfoque no fundo */
    -webkit-backdrop-filter: blur(10px); /* Safari compatibility */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* MELHORIA: Efeito de brilho sutil no fundo do card */
.sustainability-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

/* MELHORIA: Animação de hover - card aumenta e recebe sombra */
.sustainability-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 166, 81, 0.2);
}

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

/* MELHORIA: Ícone destacado com círculo de fundo e animação */
.sustainability-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.4);
    transition: all var(--transition-base);
}

/* MELHORIA: Ícone rotaciona suavemente no hover do card */
.sustainability-card:hover .sustainability-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.6);
}

.sustainability-icon i {
    font-size: 2rem;
    color: var(--white);
}

.sustainability-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 200;
}

/* MELHORIA: Badge de destaque para números/certificações */
.sustainability-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #ff9d42);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(247, 148, 29, 0.4);
    transition: all var(--transition-base);
}

/* MELHORIA: Badge aumenta no hover do card */
.sustainability-card:hover .sustainability-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.6);
}

.sustainability-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Compatibilidade com código legado */
.sustainability-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: justify;
}

.sustainability-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.125rem;
    text-align: justify;
}

.sustainability-list i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 4px;
    text-align: justify;
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sustainability-list li strong {
    display: inline;
}

/* MELHORIA: Responsividade - ajusta grid para 2 colunas em tablets */
@media (min-width: 901px) and (max-width: 1024px) {
    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sustainability-grid > *,
    .sustainability-grid > :nth-child(4),
    .sustainability-grid > :nth-child(5) {
        grid-column: auto;
    }
}

/* MELHORIA: Responsividade - 1 coluna em mobile com espaçamento ajustado */
@media (max-width: 900px) {
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sustainability-grid > *,
    .sustainability-grid > :nth-child(4),
    .sustainability-grid > :nth-child(5) {
        grid-column: auto;
    }
    
    .sustainability-text h2 {
        font-size: 2rem;
    }
    
    .sustainability-section {
        padding: 60px 0;
    }
}

/* ===================================
   NEWS SECTION
   =================================== */
.news-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-100);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
    justify-content: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.news-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: 0.65rem;
    color: var(--gray-600);
    font-size: 0.8rem;
    border-radius: 20px;
}

.news-meta i {
    margin-right: 0.25rem;
}

.news-content h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
    color: var(--dark-color);
    line-height: 1.4;
    font-weight: 500;
}

.news-content p {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.95rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.news-link i {
    transition: transform var(--transition-fast);
}

.news-link:hover i {
    transform: translateX(4px);
}

.news-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(44, 95, 45, 0.2);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color), #e88419);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Padrão decorativo de fundo */
.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px
        );
    pointer-events: none;
}

/* Formas geométricas flutuantes */
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float-cta 20s infinite ease-in-out;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 100px;
    animation-delay: 7s;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 80%;
    animation-delay: 3s;
}

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

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

/* Ícone central decorativo */
.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: pulse-icon 3s infinite ease-in-out;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,1), rgba(255,255,255,0.8));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

/* Botão CTA com animação de pulso */
.btn-cta-pulse {
    position: relative;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

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

.btn-cta-pulse:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-pulse i {
    margin-right: 0.5rem;
    transition: transform var(--transition-base);
}

.btn-cta-pulse:hover i {
    transform: translateX(5px);
    animation: arrow-bounce 0.6s infinite;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(10px);
    }
}

/* ===================================
   CONTACT PREVIEW
   =================================== */
.contact-preview {
    padding: var(--spacing-xl) 0;
    background-color: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info h3,
.contact-form-preview h3 {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 0.75rem;
}

/* Sublinhado decorativo sutil */
.contact-info h3::after,
.contact-form-preview h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}

/* Hover sutil nos cards */
.contact-item:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
    transition: transform var(--transition-base);
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-form-preview {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 95, 45, 0.15);
    border: 1px solid rgba(44, 95, 45, 0.1);
    position: relative;
    overflow: hidden;
}

/* Borda superior decorativa */
.contact-form-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e8f5e9;
}

.form-header h3 {
    color: var(--primary-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-preview form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
    }
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.contact-form-preview input,
.contact-form-preview select,
.contact-form-preview textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: #fafafa;
}

.contact-form-preview input:hover,
.contact-form-preview select:hover,
.contact-form-preview textarea:hover {
    border-color: var(--accent-color);
    background: white;
}

.contact-form-preview input:focus,
.contact-form-preview select:focus,
.contact-form-preview textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.08);
}

.contact-form-preview select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c5f2d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-form-preview textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-primary);
}

/* Botão de envio do formulário de contato */
.contact-form-preview .btn-primary {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-form-preview .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.contact-form-preview .btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.contact-form-preview .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
    font-size: 4rem;
    margin-bottom: -0.5rem;
    line-height: 1;
}

.footer-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
    margin-top: 0;
    line-height: 1.2;
}

/* Alinhamento dos títulos do footer */
.footer-column:first-child {
    padding-top: 0;
}

.footer-column:not(:first-child) h4 {
    padding-top: 0.5rem;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

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

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Fade-in animations desabilitadas - removidas opacidades iniciais */

/* ===================================
   NEWS PAGE STYLES
   =================================== */
.page-hero {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d7a2d 50%, #1a4d1a 100%);
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    padding: 8rem 0 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    overflow: hidden;
}

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

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 166, 81, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(100, 200, 100, 0.15) 0%, transparent 50%);
    opacity: 0.6;
}

/* Ícones Flutuantes no Hero */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.08;
}

.hero-floating-icons i {
    position: absolute;
    color: white;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-icons i:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating-icons i:nth-child(2) {
    top: 30%;
    right: 15%;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.hero-floating-icons i:nth-child(3) {
    bottom: 25%;
    left: 20%;
    font-size: 2.8rem;
    animation-delay: 2s;
}

.hero-floating-icons i:nth-child(4) {
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.hero-floating-icons i:nth-child(5) {
    bottom: 15%;
    right: 25%;
    font-size: 2.3rem;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero .container {
    width: 100%;
}

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

.page-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 166, 81, 0.4);
    position: relative;
    width: 100%;
}

.page-hero h1::after {
    display: none;
}

.page-hero p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    margin-top: 1rem;
    opacity: 0.9;
    width: 100%;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 200;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 2.5rem auto 1.5rem;
    opacity: 0;
    animation: fadeInUpBreadcrumb 1s ease-out 0.5s both;
}

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

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span:last-child {
    color: var(--secondary-color);
}

.news-filter-section {
    padding: var(--spacing-lg) 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.news-filter-section.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    position: relative;
}

.filters-results-count {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.15);
    animation: fadeIn 0.4s ease;
}

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

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 51, 102, 0.1);
    background: rgba(0, 51, 102, 0.02);
}

.filter-btn i {
    transition: transform 0.3s ease;
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(0, 51, 102, 0.2);
}

.news-archive-section {
    padding-top: 10px;
    background: var(--white);
}

.news-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
}

.news-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
    opacity: 1;
    transform: scale(1);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Card em Destaque */
.news-card.featured-news {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.1);
}

.featured-news .news-image {
    height: 180px;
}

.featured-news .news-content {
    padding: 1.25rem;
}

.featured-news h3 {
    font-size: 1.15rem !important;      
    margin-top: 1.5rem;
    margin-bottom: 0.65rem;
}

.featured-news .news-meta {
    font-size: 0.8rem;
}

/* Badge Em Destaque */
.badge-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 10;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.35);
    animation: pulse 2s ease-in-out infinite;
}

.badge-featured i {
    animation: rotate 3s linear infinite;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Badges Coloridos por Categoria */
.news-category {
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.category-inovacao {
    background: linear-gradient(135deg, #029226 0%, #005604 100%);
}

.category-reconhecimento {
    background: linear-gradient(135deg, #005604 0%, #029226 100%);
}

.category-expansao {
    background: linear-gradient(135deg, #029226 0%, #005604 100%);
}

.category-sustentabilidade {
    background: linear-gradient(135deg, #005604 0%, #029226 100%);
}

.category-social {
    background: linear-gradient(135deg, #029226 0%, #005604 100%);
}

/* Link Leia Mais */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 1.2rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 166, 81, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-link:hover {
    background: var(--primary-color);
    color: white;
    gap: 0.7rem;
    transform: translateX(3px);
    box-shadow: 0 3px 12px rgba(0, 166, 81, 0.25);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Tempo de Leitura */
.news-meta span:has(i.fa-clock) {
    background: rgba(0, 166, 81, 0.1);
    padding: 0.3rem 1.5rem;
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.news-meta span i.fa-clock {
    color: var(--primary-color);
}

.news-card.hidden {
    display: none !important;
}

.results-count {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--gray-600);
    font-weight: 500;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.results-count i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.results-count strong {
    color: var(--primary-color);
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--gray-200);
    color: var(--gray-700);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag i {
    font-size: 0.7rem;
}

.load-more-section {
    text-align: center;
    margin-top: var(--spacing-xl);
    margin-bottom: 2rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1a4d1a 0%, #2d7a2d 50%, #00a651 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(247, 148, 29, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.newsletter-icon {
    font-size: 3.5rem;
    opacity: 0.9;
    color: var(--secondary-color);
    animation: pulse 2s ease-in-out infinite;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    padding: 0.25rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.1);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), #ffa94d);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
}

.newsletter-form button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 148, 29, 0.6);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
/* Laptops pequenos - 1200px */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    /* Values grid - 3 colunas em laptops pequenos */
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-card {
        grid-column: span 1 !important;
    }
    
    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: span 1 !important;
    }
    
    /* Services grid - 3 colunas em laptops pequenos */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card {
        grid-column: span 1 !important;
    }
    
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1 !important;
    }
    
    /* Stats com espaçamento ajustado */
    .stats-grid {
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    /* Hero ajustado */
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    /* Locations */
    .locations-content {
        gap: 2.5rem;
    }
}

/* Tablets landscape - 992px */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* About section - 1 coluna */
    .about-grid,
    .contact-grid,
    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Stats - 3 colunas em tablets */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    /* MELHORIA: Badge reduzido em tablets */
    .hero-badge {
        top: 100px;
        right: 3%;
        padding: 0.8rem 1.2rem;
    }
    
    .badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .badge-text strong {
        font-size: 1.5rem;
    }
    
    .badge-text span {
        font-size: 0.8rem;
    }
    
    /* Values - 2 colunas em tablets */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .value-card {
        grid-column: span 1 !important;
    }
    
    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: span 1 !important;
    }
    
    /* Services - 2 colunas em tablets */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        grid-column: span 1 !important;
    }
    
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1 !important;
    }
    
    /* Locations Section */
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .locations-title {
        font-size: 2.5rem;
    }
    
    .locations-text {
        text-align: center;
    }
    
    .locations-list {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .locations-map {
        order: -1;
    }
    
    .map-container {
        max-width: 100%;
        height: 500px;
        margin: 0 auto;
    }
    
    /* News Page Responsive */
    .page-hero {
        padding: 4rem 0;
        min-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
        margin: 1rem 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-text {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .news-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    :root {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar {
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }

    .nav-brand {
        position: relative;
        left: auto;
    }

    .nav-toggle {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle:hover {
        transform: scale(1.05);
    }

    .nav-toggle:active {
        transform: scale(0.95);
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        max-height: calc(100vh - 65px);
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(44, 95, 45, 0.1);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        width: 100%;
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 500;
        color: var(--primary-dark);
        transition: all 0.2s ease;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, #e8f5e9 0%, transparent 100%);
        color: var(--primary-color);
        padding-left: 2rem;
    }
    
    .nav-link-highlight {
        background: linear-gradient(90deg, #fff3e0 0%, transparent 100%);
        color: var(--secondary-color) !important;
        font-weight: 600;
    }
    
    .nav-link-highlight:hover {
        background: linear-gradient(90deg, #ffe0b2 0%, transparent 100%);
        color: var(--secondary-color) !important;
    }
    
    .nav-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin-left: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        margin-left: 0;
        background: #f1f8f4;
        border-radius: 0;
        padding: 0.5rem 0;
        border-left: 3px solid var(--accent-color);
    }
    
    .dropdown-menu li {
        width: 100%;
    }
    
    .dropdown-menu li a {
        padding: 0.875rem 1.5rem 0.875rem 2.5rem;
        font-size: 0.95rem;
        color: #555;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.2s ease;
    }
    
    .dropdown-menu li a::before {
        content: '→';
        color: var(--accent-color);
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(44, 95, 45, 0.08);
        color: var(--primary-color);
        padding-left: 3rem;
    }
    
    .nav-dropdown .fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: 60vh;
        height: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
        font-weight: 600;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* MELHORIA: Badge escondido em telas médias */
    .hero-badge {
        display: none;
    }
    
    /* MELHORIA: Formas menores em tablets */
    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3,
    .hero-shape-4 {
        opacity: 0.1;
    }
    
    /* MELHORIA: Botões empilhados */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    /* Header estático no mobile (não acompanha rolagem) */
    .header {
        position: relative;
        width: 100%;
        padding: 0;
        background: rgba(44, 95, 45, 0.95);
        backdrop-filter: blur(10px);
    }

    .hero {
        margin-top: 0;
        height: auto;
        min-height: calc(100vh - 65px);
    }

    .page-hero {
        margin-top: 0;
        padding-top: 4rem;
    }

    .hero-contato,
    .hero-sustentabilidade {
        margin-top: 0;
        padding-top: 80px;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .nav-brand p {
        font-size: 0.75rem;
        margin-top: -2px;
    }
    
    .nav-toggle {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
    
    .particle {
        display: none;
    }
    
    /* Fix background-attachment: fixed no mobile (não funciona no iOS) */
    .hero,
    .sustainability-section {
        background-attachment: scroll;
    }
}

/* ===================================
   MODERN ANIMATIONS (OTIMIZADO)
   =================================== */

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -50px;
    opacity: 0.5;
    animation: float-up linear infinite;
    pointer-events: none;
    will-change: transform;
}

@keyframes float-up {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

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

/* Bounce animation for scroll indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Smooth transitions */
a, button, .btn {
    transition: all 0.2s ease;
}

.service-card, .value-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effects */
.service-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.25);
}

/* ===================================
   TECH DASHBOARD
   =================================== */
.tech-dashboard-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.tech-dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%232c5f2d" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/%3E%3C/svg%3E');
    background-size: cover;
    opacity: 0.5;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.dashboard-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 95, 45, 0.2);
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.dashboard-content {
    flex: 1;
}

.dashboard-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 0.25rem 0;
}

.dashboard-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
}

.dashboard-status,
.dashboard-trend,
.dashboard-progress {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.dashboard-status.online {
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
}

.dashboard-status.positive {
    color: var(--accent-color);
    background: rgba(0, 166, 81, 0.1);
}

.dashboard-trend.up {
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
}

.dashboard-progress {
    color: var(--primary-color);
    background: rgba(44, 95, 45, 0.1);
}

.dashboard-status i,
.dashboard-trend i {
    font-size: 0.7rem;
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===================================
   CHAT WIDGET
   =================================== */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(44, 95, 45, 0.6);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
}

.status-online {
    font-size: 0.75rem;
    opacity: 0.9;
}

.status-online i {
    font-size: 0.5rem;
    color: #4ade80;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.message-content {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 240px;
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.quick-reply {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-reply:hover {
    background: var(--primary-color);
    color: white;
}

/* ===================================
   LOCATIONS MAP SECTION
   =================================== */
.locations-map-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Padrão de mapa-múndi sutil no fundo */
.locations-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cpath d="M20,30 L25,28 L30,32 L28,38 L25,40 L20,38 Z M40,25 L48,22 L55,28 L52,35 L45,38 L40,32 Z M65,20 L72,18 L78,24 L75,32 L68,34 L65,28 Z" fill="%232c5f2d" opacity="0.03"/%3E%3C/svg%3E');
    background-size: 200px 200px;
    opacity: 0.3;
    pointer-events: none;
}

/* Efeito de brilho decorativo */
.locations-map-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.locations-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.locations-text {
    position: relative;
}

.locations-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-shadow: 2px 2px 4px rgba(44, 95, 45, 0.1);
}

.title-highlight {
    color: var(--primary-color);
    display: inline-block;
}

.locations-message {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 3px solid var(--primary-color);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(44, 95, 45, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.locations-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(44, 95, 45, 0.2);
}

.locations-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    position: relative;
}

.location-item:nth-child(1) { animation-delay: 0.1s; }
.location-item:nth-child(2) { animation-delay: 0.2s; }
.location-item:nth-child(3) { animation-delay: 0.3s; }
.location-item:nth-child(4) { animation-delay: 0.4s; }

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

/* MELHORIA: Badges com glassmorphism, gradiente e ícone decorativo */
.location-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gray-800);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    border: 2px solid rgba(44, 95, 45, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* MELHORIA: Ícone de localização antes do texto */
.location-badge::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* MELHORIA: Brilho sutil no fundo */
.location-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

/* MELHORIA: Hover com lift, borda colorida e brilho */
.location-item:hover .location-badge {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.15);
}

.location-item:hover .location-badge::after {
    opacity: 1;
}

.locations-map {
    position: relative;
    padding: 2rem;
    margin-top: 3rem;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 95, 45, 0.25), 
                0 10px 30px rgba(44, 95, 45, 0.15),
                inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    z-index: 1;
    position: relative;
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.5s ease;
}

.map-container:hover {
    transform: perspective(1000px) rotateY(1deg) translateY(-3px);
    box-shadow: 0 25px 80px rgba(44, 95, 45, 0.35), 
                0 15px 40px rgba(44, 95, 45, 0.2),
                inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
}

.leaflet-popup-content {
    margin: 12px;
}

.map-marker:hover::after {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(44, 95, 45, 0.4), 0 0 0 0 rgba(44, 95, 45, 0.7);
    }
    50% {
        box-shadow: 0 2px 8px rgba(44, 95, 45, 0.4), 0 0 0 8px rgba(44, 95, 45, 0);
    }
}

/* Responsividade das locations - consolidada nas media queries principais acima */

/* News Page Mobile já incluído na media query 768px principal acima */

/* Responsividade News Filter - Mobile */
@media (max-width: 900px) {
    .news-filter-section {
        padding: 1rem 0;
        top: 65px;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    
    .news-filters {
        gap: 0.5rem;
        padding: 0 0.5rem;
        padding-top: 2rem;
    }
    
    .filters-results-count {
        position: static;
        display: inline-block;
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        flex: 0 0 auto;
    }
    
    .filter-btn:hover {
        transform: none;
    }
    
    .filter-btn i {
        font-size: 0.85rem;
    }
    
    .results-count {
        font-size: 0.95rem;
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .news-archive-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Card em Destaque - Mobile */
    .news-card.featured-news {
        border-width: 2px;
    }
    
    .featured-news .news-image {
        height: 180px;
    }
    
    .badge-featured {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.85rem;
        font-size: 0.7rem;
    }
    
    .read-more-link {
        width: 100%;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.55rem 1rem;
    }
}

/* ===================================
   RESPONSIVIDADE COMPLETA - MELHORIAS ADICIONAIS
   =================================== */

/* Nota: Media queries consolidadas acima para evitar duplicação */

/* Mobile - 480px */
@media (max-width: 480px) {
    /* Header */
    .nav-brand h1 {
        font-size: 1.25rem;
    }
    
    .nav-brand p {
        font-size: 0.7rem;
    }
    
    /* Stats Section */
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* About Section */
    .about-image {
        height: 250px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Values Section */
    .value-card {
        flex-direction: column;
        text-align: center;
    }
    
    .value-icon {
        margin: 0 auto;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    /* Services Section */
    .service-image {
        height: 180px;
    }
    
    .service-content h3 {
        font-size: 1.15rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    /* Locations Section */
    .locations-title {
        font-size: 1.75rem;
    }
    
    .locations-message {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .location-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .location-badge::before {
        font-size: 0.9rem;
        margin-right: 6px;
    }
    
    .map-container {
        height: 350px;
        max-width: 100%;
    }
    
    /* Sustainability Section */
    .sustainability-text h2 {
        font-size: 1.75rem;
    }
    
    .sustainability-text > p {
        font-size: 0.95rem;
    }
    
    .sustainability-card {
        padding: 1.5rem;
    }
    
    .sustainability-icon {
        width: 60px;
        height: 60px;
    }
    
    .sustainability-icon i {
        font-size: 1.75rem;
    }
    
    .sustainability-card h3 {
        font-size: 1.1rem;
    }
    
    .sustainability-badge {
        font-size: 1rem;
        padding: 0.4rem 0.75rem;
    }
    
    /* CTA Section */
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta-pulse {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    /* Contact Section */
    .contact-info h3,
    .contact-form-preview h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .contact-form-preview {
        padding: 1.5rem;
    }
    
    .contact-form-preview input,
    .contact-form-preview textarea {
        font-size: 0.95rem;
    }
    
    .contact-form-preview .btn-primary {
        font-size: 1rem;
        padding: 1rem;
    }
    
    /* Footer */
    .footer-column h3 {
        font-size: 3rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    /* Chat Widget */
    .chat-toggle {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .chat-badge {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    :root {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Values Section extra compacto */
    .value-card {
        padding: 1rem;
        grid-column: span 1 !important;
    }
    
    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: span 1 !important;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
    }
    
    .value-icon i {
        font-size: 1.3rem;
    }
    
    .value-card h3 {
        font-size: 1rem;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
    
    /* Services Section extra compacto */
    .service-card {
        padding: 1rem;
        grid-column: span 1 !important;
    }
    
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 1 !important;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.05rem;
    }
    
    .service-content p {
        font-size: 0.85rem;
    }
    
    /* Locations extra compacto */
    .locations-title {
        font-size: 1.5rem;
    }
    
    .locations-message {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .location-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .location-badge::before {
        font-size: 0.9rem;
        margin-right: 6px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .footer-column h3 {
        font-size: 2.5rem;
    }
    
    .locations-title {
        font-size: 1.5rem;
    }
    
    .sustainability-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   RESPONSIVIDADE SUSTENTABILIDADE - MOBILE ESTREITO
   =================================== */

/* Tablets e mobile grande */
@media (max-width: 900px) {
    /* Page Hero compacto */
    .page-hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    .hero-floating-icons i {
        font-size: 1rem;
    }

    /* Grids em 1 coluna no mobile */
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .value-card {
        grid-column: span 1 !important;
    }

    /* Stats 2x2 compacto */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        padding: var(--spacing-md);
        gap: 1rem;
    }

    .stat-item {
        padding: var(--spacing-sm);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item i {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    /* About grid 1 coluna */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Section headers */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Section padding reduzido */
    .section-padding {
        padding: 2.5rem 0;
    }

    /* CTA compacto */
    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    /* Sustainability list */
    .sustainability-list li {
        font-size: 0.9rem;
    }

    /* Footer compacto */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile estreito */
@media (max-width: 480px) {
    .page-hero {
        padding: 2.5rem 0;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .hero-floating-icons {
        display: none;
    }

    /* Sections ainda mais compactas */
    .section-padding {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Value cards compactos */
    .value-card {
        padding: 1.25rem;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    .value-card ul li {
        font-size: 0.8rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-icon i {
        font-size: 1.4rem;
    }

    /* About content compacto */
    .about-content h3 {
        font-size: 1.15rem;
    }

    .about-content p {
        font-size: 0.85rem;
    }

    .sustainability-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .sustainability-list i {
        font-size: 0.9rem;
    }

    /* Stats 1 coluna em tela muito estreita */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-item i {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    /* Botões */
    .value-card .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    /* CTA */
    .cta-section {
        padding: 2rem 0;
    }

    .cta-content h2 {
        font-size: 1.25rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    .btn-light {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    /* WhatsApp e Chat */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 15px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }

    .chat-widget {
        right: 10px;
        bottom: 75px;
        width: calc(100vw - 20px);
    }
}

/* Extra estreito - 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .page-hero h1 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    /* Stats em coluna única */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .stat-item {
        padding: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-align: left;
    }

    .stat-item i {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .stat-item p {
        font-size: 0.75rem;
        margin: 0;
    }

    /* Value cards ultra compactos */
    .value-card {
        padding: 1rem;
    }

    .value-card h3 {
        font-size: 0.95rem;
    }

    .value-card p,
    .value-card ul li {
        font-size: 0.8rem;
    }

    .value-icon {
        width: 42px;
        height: 42px;
    }

    .value-icon i {
        font-size: 1.2rem;
    }

    /* About */
    .about-content h3 {
        font-size: 1.05rem;
    }

    .sustainability-list li {
        font-size: 0.8rem;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.15rem;
    }

    /* Footer */
    .footer-column h3 {
        font-size: 2rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}
