/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Century Gothic', serif;
    line-height: 1.6;
    color: #000000;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

/* ===== ESTILOS PARA LANDING PAGE ===== */

/* Preview Sections */
.about-preview, .sectors-preview, .approach-preview, .why-preview {
    padding: 4rem 0;
}

.about-preview {
    background: white;
}

.sectors-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
}

.approach-preview {
    background: white;
}

.why-preview {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* ===== SEÇÃO DE PARCEIROS - ESTILO SIMILAR AOS CLIENTES ===== */

/* Container principal */
.partners-section {
    width: 100%;
    background-color: var(--white);
    padding: 40px 20px;
    box-sizing: border-box;
    margin-top: 40px;
}

.partners-box {
    max-width: 1200px;
    margin: 0 auto;
}

/* Título da seção */
.partners-box h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.partners-box h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Grid de logos dos parceiros */
.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 colunas */
    gap: 30px; /* Espaçamento entre logos */
    justify-items: center; /* Centraliza os itens horizontalmente */
    align-items: center; /* Centraliza os itens verticalmente */
}

/* Imagens dos logos */
.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Mantém proporção da imagem */
    filter: grayscale(20%); /* Leve tom cinza para uniformidade */
    opacity: 0.9; /* Leve transparência */
    transition: all 0.3s ease;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .partners-logos-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas em tablets */
        gap: 25px;
    }
    
    .partner-logo-item {
        height: 130px;
        padding: 15px;
    }
    
    .partners-box h3 {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .partners-logos-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em celulares */
        gap: 20px;
    }
    
    .partner-logo-item {
        height: 110px;
        padding: 12px;
    }
    
    .partners-section {
        padding: 30px 15px;
    }
    
    .partners-box h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
}

/* Responsividade para celulares pequenos */
@media (max-width: 480px) {
    .partners-logos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em celulares pequenos */
        gap: 15px;
    }
    
    .partner-logo-item {
        height: 100px;
        padding: 10px;
    }
    
    .partners-section {
        padding: 25px 10px;
    }
    
    .partners-box h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
}

/* Versão com destaque na borda (opcional) */
.partners-section.border-highlight {
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
}

/* Versão com título decorado (opcional) */
.partners-box h3.decorated {
    position: relative;
    padding-bottom: 15px;
}

.partners-box h3.decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* Preview Cards */
.preview-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #16a34a;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.preview-card i {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.preview-card h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.preview-card p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Preview Links */
.preview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.preview-link:hover {
    color: #15803d;
    gap: 0.75rem;
}

/* Sector Preview Cards */
.sector-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #16a34a;
}

.sector-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sector-preview-card h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.sector-preview-card p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sector-preview-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.sector-preview-card li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f3f4f6;
}

.sector-preview-card li:before {
    content: "✓";
    color: #16a34a;
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Approach Preview Cards */
.approach-preview-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.approach-preview-card:hover {
    transform: translateY(-3px);
    background: white;
}

.approach-preview-card i {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.approach-preview-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.approach-preview-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Preview Cards */
.why-preview-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.why-preview-card i {
    font-size: 2.5rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.why-preview-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.why-preview-card p {
    color: #666;
    line-height: 1.6;
}

/* Preview CTA */
.preview-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    background: transparent;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-2px);
}

/* ===== ESTILOS PARA PÁGINAS COMPLETAS ===== */

/* Hero específico para páginas internas */
.hero[style*="background"] {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Conteúdo completo */
.about-complete, .sectors-complete, .approach-complete, .why-complete {
    padding: 4rem 0;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #16a34a;
    text-decoration: none;
}

.breadcrumb span {
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-card, .sector-preview-card, .approach-preview-card, .why-preview-card {
        padding: 1.5rem;
    }
}

/* Seções comuns */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.section-title h2{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #16a34a;
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s ease;
  
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    background: none;
    border: none;
    color: #000000;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #16a34a;
}

.nav-btn {
    background: #16a34a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-btn:hover {
    background: #15803d;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Navegação entre Sites */
.site-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.site-nav-btn {
    background: white;
    color: #16a34a;
    border: 2px solid #16a34a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-nav-btn:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Seções Específicas para Subsites */

/* Casos de Estudo */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.case-study-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #16a34a;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 1.5rem;
}

.case-study-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #059669;
    font-weight: 500;
}

/* Manual SOP */
.sop-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    padding: 4rem 0;
}

.sop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sop-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.sop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.sop-card i {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.sop-download {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Diferenciais */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.diff-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid;
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diff-card:nth-child(1) { border-color: #16a34a; }
.diff-card:nth-child(2) { border-color: #3b82f6; }
.diff-card:nth-child(3) { border-color: #ea580c; }
.diff-card:nth-child(4) { border-color: #059669; }

.diff-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.diff-card:nth-child(1) .diff-icon { color: #16a34a; }
.diff-card:nth-child(2) .diff-icon { color: #3b82f6; }
.diff-card:nth-child(3) .diff-icon { color: #ea580c; }
.diff-card:nth-child(4) .diff-icon { color: #059669; }

/* Resultados e Métricas */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0fdf4;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #666;
    font-weight: 600;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #16a34a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #059669;
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

/* Responsividade para Subsites */
@media (max-width: 768px) {
    .site-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .site-nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .case-studies-grid,
    .sop-grid,
    .differentiators-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Section */


.hero-content {
    text-align: center;
}

.hero-badge {
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
}

.btn-primary {
    background: #16a34a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(22, 163, 74, 0.2);
}

.btn-primary:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(22, 163, 74, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

/* Parcerias em Destaque */
.partners-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #16a34a;
}

.partner-flag {
    font-size: 2.5rem;
}

.partner-info h3 {
    color: #000000;
    margin-bottom: 0.50rem;
    font-size: 1.5rem;
}

.partner-info p {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.partner-info span {
    color: #000000;
    font-size: 0.85rem;
    font-weight: 500;
}

/* História Section */
.history-section {
    margin: 3rem 0;
}

.history-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}



.history-text h3 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    border-bottom: 3px solid #16a34a;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.history-text p {
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* História Simplificada */
.history-content-simple {
    max-width: 900px;
    margin: 0 auto;
}

.history-text-expanded {
    text-align: left;
}

.history-text-expanded p {
    margin-bottom: 1.5rem;
    color: #000000;
    line-height: 1.7;
    font-size: 1.05rem;
}

.history-mission {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
    border-left: 4px solid #16a34a;
}

.history-mission h3 {
    color: #166534;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.history-mission p {
    color: #374151;
    margin-bottom: 0;
    line-height: 1.7;
}

/* História Highlights - Versão Melhorada */
.history-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #16a34a;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    color: #16a34a;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-item p {
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .history-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .history-mission {
        padding: 1.5rem;
    }
    
    .history-mission h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .history-text-expanded p {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .highlight-item i {
        font-size: 1.25rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-image {
        order: -1;
    }
    
    .history-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .milestone {
        padding: 1.25rem;
    }
    
    .milestone-year {
        font-size: 1.25rem;
    }
    
    .history-text p {
        font-size: 1rem;
    }
}
/* About Details Atualizado */
.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 06rem;
}

.location-info, .identification-info {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.location-info h4, .identification-info h4 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #16a34a;
    padding-bottom: 0.5rem;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-item i {
    color: #16a34a;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partners-highlight {
        grid-template-columns: 1fr;
    }
    
    .about-details {
        grid-template-columns: 1fr;
    }
}


/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    padding: 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--color-from), var(--color-to));
}

.about-card.mission {
    --color-from: #f0fdf4;
    --color-to: #00ff59;
}

.about-card.vision {
    --color-from: #fff7ed;
    --color-to: #00ff59;
}

.about-card.values {
    --color-from: #f8fafc;
    --color-to: #00ff59;
}

.about-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card.mission i {
    color: #16a34a;
}

.about-card.vision i {
    color: #ea580c;
}

.about-card.values i {
    color: #475569;
}

/* Versão alternativa com alinhamento perfeito */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;

}


.value-text {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}


.value-icon i {
    font-size: 18px;
}

.about-card h3 {
    margin-bottom: 1rem;
    color: #000000;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    margin-bottom: 0.5rem;
    color: #000000;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-item i {
    color: #16a34a;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ===== SECTORS CARDS SIMPLIFICADOS ===== */

.sectors-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.sector-card-simple {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sector-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Imagem do Card */
.sector-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sector-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sector-card-simple:hover .sector-card-image img {
    transform: scale(1.05);
}

/* Overlay e Badge */
.sector-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.sector-card-badge {
    background: #16a34a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Conteúdo do Card */
.sector-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sector-card-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.25rem;
    line-height: 1.3;
}

.sector-card-content p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
}

/* Link do Card */
.sector-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 0;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    transition: all 0.3s ease;
}

.sector-card-link:hover {
    color: #15803d;
    gap: 0.75rem;
}

/* Cores diferentes para cada card (opcional) */
.sector-card-simple:nth-child(1) .sector-card-badge {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.sector-card-simple:nth-child(2) .sector-card-badge {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.sector-card-simple:nth-child(3) .sector-card-badge {
    background: linear-gradient(135deg, #ea580c, #fdba74);
}

.sector-card-simple:nth-child(4) .sector-card-badge {
    background: linear-gradient(135deg, #059669, #34d399);
}

/* Responsividade */
@media (max-width: 1200px) {
    .sectors-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sector-card-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .sector-card-content {
        padding: 1.25rem;
    }
    
    .sector-card-content h3 {
        font-size: 1.1rem;
    }
}

/* Estilos para imagem no modal - VERSÃO MELHORADA */
.modal-image {
    width: 100%;
    height: 300px; /* Aumentei a altura */
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.02);
}

/* Container melhorado para a imagem */
.modal-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

/* Estilo para quando não há imagem */
.modal-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Methodology Section */
.methodology {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    color: white;
}

.methodology .section-title,
.methodology .section-description {
    color: white;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.methodology-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: background 0.3s ease;
}

.methodology-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.methodology-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.methodology-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.methodology-card p {
    opacity: 0.9;
}



/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-choose-card {
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--color-from), var(--color-to));
}

.why-choose-card:nth-child(1) {
    --color-from: #f0fdf4;
    --color-to: #dcfce7;
}

.why-choose-card:nth-child(2) {
    --color-from: #fff7ed;
    --color-to: #fed7aa;
}

.why-choose-card:nth-child(3) {
    --color-from: #eff6ff;
    --color-to: #dbeafe;
}

.why-choose-card:nth-child(4) {
    --color-from: #ecfdf5;
    --color-to: #a7f3d0;
}

.why-choose-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-choose-card:nth-child(1) i {
    color: #16a34a;
}

.why-choose-card:nth-child(2) i {
    color: #ea580c;
}

.why-choose-card:nth-child(3) i {
    color: #2563eb;
}

.why-choose-card:nth-child(4) i {
    color: #059669;
}

.why-choose-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.why-choose-card p {
    color: #666;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
}

.leadership-section {
    margin-bottom: 3rem;
}

.leadership-section h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #333;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.leader-card {
    text-align: center;
}

.leader-icon {
    background: linear-gradient(135deg, var(--color-from), var(--color-to));
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1rem;
}

.leader-card:nth-child(1) .leader-icon {
    --color-from: #dcfce7;
    --color-to: #bbf7d0;
}

.leader-card:nth-child(2) .leader-icon {
    --color-from: #fecaca;
    --color-to: #fca5a5;
}

.leader-card:nth-child(3) .leader-icon {
    --color-from: #fed7aa;
    --color-to: #fdba74;
}

.leader-card:nth-child(4) .leader-icon {
    --color-from: #bfdbfe;
    --color-to: #93c5fd;
}

.leader-icon i {
    font-size: 5rem;
    color: var(--icon-color);
}

.leader-card:nth-child(1) .leader-icon i {
    --icon-color: #16a34a;
}

.leader-card:nth-child(2) .leader-icon i {
    --icon-color: #dc2626;
}

.leader-card:nth-child(3) .leader-icon i {
    --icon-color: #ea580c;
}

.leader-card:nth-child(4) .leader-icon i {
    --icon-color: #2563eb;
}

.leader-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.leader-card p {
    color: var(--text-color);
    font-weight: 600;
}

.leader-card:nth-child(1) p {
    --text-color: #16a34a;
}

.leader-card:nth-child(2) p {
    --text-color: #dc2626;
}

.leader-card:nth-child(3) p {
    --text-color: #ea580c;
}

.leader-card:nth-child(4) p {
    --text-color: #2563eb;
}

.partner-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.partner-card i {
    font-size: 4rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.partner-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.25rem;
}

.partner-company {
    color: #16a34a;
    font-weight: 600;
}

.project-tag {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

/* Controles do Slider */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #16a34a;
    transform: scale(1.2);
}

.dot:hover {
    background: #16a34a;
    transform: scale(1.1);
}

/* Barra de Progresso */
.slider-progress {
    margin-top: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    width: 12.5%; /* 100% / 8 slides */
    transition: transform 0.5s ease;
}

/* Animações */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: #333;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #16a34a;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.transparency-info {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.transparency-info h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.transparency-info h4 i {
    color: #16a34a;
}

.transparency-details {
    margin-bottom: 1rem;
}

.transparency-details p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.875rem;
}

.transparency-note {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

.hours-info {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hours-info h4 {
    margin-bottom: 1rem;
    color: #333;
}

.hours-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Estilos para links de contacto */
.contact-details a:hover,
.transparency-details a:hover {
    color: #16a34a !important;
    text-decoration: underline !important;
}

.contact-details a,
.transparency-details a {
    transition: all 0.3s ease;
}

/* Melhorar a usabilidade em dispositivos móveis */
@media (max-width: 768px) {
    .contact-details a,
    .transparency-details a {
        padding: 2px 4px;
        border-radius: 3px;
    }
    
    .contact-details a:active,
    .transparency-details a:active {
        background-color: rgba(22, 163, 74, 0.1);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Estilos para o formulário de contacto */
.contact-form {
    background: linear-gradient(135deg, #f8fafc, #f0fdf4);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Estados de validação */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #16a34a;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
}

/* Botão de submit */
.btn-primary {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.875rem;
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links button {
    background: none;
    border: none;
    color: #d1d5db;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links button:hover {
    color: white;
}

.footer-contacts p {
    margin-bottom: 0.5rem;
}

.footer-values p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

/* Estilos para links do footer */
.footer-contacts a:hover {
    color: #4ade80 !important;
    text-decoration: underline !important;
}

.footer-contacts a {
    transition: all 0.3s ease;
}

/* Melhorar a usabilidade em dispositivos móveis */
@media (max-width: 768px) {
    .footer-contacts a {
        padding: 2px 4px;
        border-radius: 3px;
        display: inline-block;
    }
    
    .footer-contacts a:active {
        background-color: rgba(74, 222, 128, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        position: static;
        margin-top: 1rem;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .operations-content {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== WATERMARKS FIXOS - COM TESTE VISÍVEL ===== */

/* PRIMEIRO: Vamos ver se o CSS está sendo aplicado */
/* Adicione uma borda vermelha temporária para teste */
.about-preview,
.sectors-preview,
.approach-preview,
.why-preview{
    position: relative !important;
}

/* 2. Sobre Section - COM IMAGEM DE TESTE */
.about-preview {
    position: relative;
    background: 
        /* Fundo branco com opacidade */
        linear-gradient(rgba(34, 194, 74, 0.836))
        /* Cor de fundo original */
        white !important;
    background-size: 
        auto, /* Para o gradient */
        70%,  /* Para a logo - TAMANHO GRANDE para ver */
        auto; /* Para o background original */
    background-position: center;
    background-blend-mode: normal, normal, normal;
}

/* 3. Sectores Section - IMAGEM COBRINDO TUDO */
.sectors-preview {
    position: relative;
    background: 
        /* Overlay branco translúcido para melhor legibilidade do texto */
        linear-gradient(rgba(255, 255, 255, 0.116), rgba(255, 255, 255, 0.781)),
        /* Imagem de fundo cobrindo toda a section */
        url('images/Biodiversidade.jpg') center/cover no-repeat !important;
}

/* 4. Abordagem Section - IMAGEM COBRINDO TUDO */
.approach-preview {
    position: relative;
    background: 
        /* Fundo branco com opacidade */
        linear-gradient(rgba(34, 194, 74, 0.836))
        /* Cor de fundo original */
        white !important;
    background-size: 
        auto, /* Para o gradient */
        70%,  /* Para a logo - TAMANHO GRANDE para ver */
        auto; /* Para o background original */
    background-position: center;
    background-blend-mode: normal, normal, normal;
}

/* 5. Porquê MAJOL Section - IMAGEM COBRINDO TUDO */
.why-preview {
    position: relative;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.116), rgba(255, 255, 255, 0.781)),
        url('images/Biodiversidade.jpg') center/cover no-repeat !important;
}

/* 6. Contact Section */
.contact {
    position: relative;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url('images/Logo.png') repeat,
        white !important;
    background-size: auto, 100px, auto;
    background-position: center;
    background-blend-mode: normal, normal, normal;
    background-repeat: repeat;
}

/* Espaçamento nos parceiros */
.partner-item {
    margin-bottom: 2rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
/* ===== ESPAÇAMENTO SIMPLES ENTRE TÍTULOS DAS SEÇÕES ===== */

/* HISTÓRIA - título já está no lugar certo */

/* MISSÃO, VISÃO E VALORES - adiciona espaço antes do título */
.about-complete .mission-complete {
    margin-top: 80px; /* Espaço antes da seção */
}

.about-complete .mission-complete .section-header {
    margin-bottom: 40px; /* Espaço após o título */
}

/* PARCERIAS INTERNACIONAIS - adiciona espaço antes do título */
.about-complete .partners-complete {
    margin-top: 80px; /* Espaço antes da seção */
}

.about-complete .partners-complete .section-header {
    margin-bottom: 40px; /* Espaço após o título */
}

/* INFORMAÇÕES DE CONTACTO - adiciona espaço antes da seção */
.about-complete .about-details {
    margin-top: 80px; /* Espaço antes da seção */
}

/* CLIENTES E SECTORES - adiciona espaço antes do título */
.about-complete .clients-sectors {
    margin-top: 80px; /* Espaço antes da seção */
}

.about-complete .clients-box h3 {
    margin-bottom: 40px; /* Espaço após o título */
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 768px) {
    .about-complete .mission-complete,
    .about-complete .partners-complete,
    .about-complete .about-details,
    .about-complete .clients-sectors {
        margin-top: 60px;
    }
    
    .about-complete .mission-complete .section-header,
    .about-complete .partners-complete .section-header,
    .about-complete .clients-box h3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .about-complete .mission-complete,
    .about-complete .partners-complete,
    .about-complete .about-details,
    .about-complete .clients-sectors {
        margin-top: 40px;
    }
    
    .about-complete .mission-complete .section-header,
    .about-complete .partners-complete .section-header,
    .about-complete .clients-box h3 {
        margin-bottom: 20px;
    }
}

/* Container principal */
.clients-sectors {
    width: 100%;
    background-color: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
}

.clients-box {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid de logos */
.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 colunas */
    gap: 30px; /* Espaçamento entre logos */
    justify-items: center; /* Centraliza os itens horizontalmente */
    align-items: center; /* Centraliza os itens verticalmente */
}

/* Cada item do logo */
.client-logo-item {
    width: 100%;
    height: 150px; /* Altura fixa para uniformidade */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 8px;
    transition: transform 0.3s ease; /* Transição suave para hover */
}

/* Imagens dos logos */
.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Mantém proporção da imagem */
    opacity: 0.8; /* Opcional: leve transparência */
    transition: all 0.3s ease;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .clients-logos-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas em tablets */
        gap: 25px;
    }
    
    .client-logo-item {
        height: 100px;
    }
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .clients-logos-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em celulares */
        gap: 20px;
    }
    
    .client-logo-item {
        height: 90px;
        padding: 10px;
    }
    
    .clients-sectors {
        padding: 30px 15px;
    }
}

/* Responsividade para celulares pequenos */
@media (max-width: 480px) {
    .clients-logos-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em celulares pequenos */
        gap: 15px;
    }
    
    .client-logo-item {
        height: 80px;
    }
}

/* ===== TESTEMUNHOS SIMPLES ===== */

.testemunhos-grupo {
    position: relative;
    margin: 3rem 0;
    min-height: 400px;
}

.testemunhos-pagina {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testemunhos-pagina.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testemunhos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.testemunho-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

/* ===== TESTEMUNHOS COM FOTOS REAIS ===== */

.testemunho-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
    background: var(--primary-light);
}

.testemunho-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testemunho-card:hover .testemunho-avatar img {
    transform: scale(1.1);
}

/* Efeito de brilho no hover */
.testemunho-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* Para placeholders com iniciais */
.testemunho-avatar .placeholder-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.testemunho-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testemunho-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.testemunho-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testemunho-cargo {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testemunho-texto {
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
    padding: 0 0.5rem;
}

.testemunho-avaliacao {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-top: auto;
}

/* Controles Simples */
.testemunhos-controles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}



.testemunhos-dots {
    display: flex;
    gap: 0.75rem;
}

.testemunho-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #545557;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testemunho-dot.active {
    background: #16a34a;
    transform: scale(1.2);
}

.testemunho-dot:hover {
    background: #16a34a;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 1024px) {
    .testemunhos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testemunhos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testemunho-card {
        padding: 1.5rem;
    }
    
    .testemunhos-controles {
        gap: 1rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testemunhos-pagina.active {
    animation: fadeInUp 0.5s ease forwards;
}

/* Animações de entrada */
@keyframes fadeInUpLogo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-group {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

/* Botão do WhatsApp - Aprimorado */
.whatsapp-button {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background-color: var(--whatsapp-green);
  border-radius: var(--radius-full);
  padding: var(--space-sm);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button:hover {
  background-color: var(--whatsapp-green-hover);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
}