/* Reset e Normalize */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS - Design System Corporativo */
:root {
    /* Paleta de Cores Corporativa */
    --primary-green: #00713c;
    --deep-black: #1d1d1b;
    --off-white: #FAFAFA;
    --light-gray: #E8E8E8;
    --medium-gray: #888888;
    --dark-gray: #333333;
    --subtle-green: #00994d;
    --overlay-dark: rgba(29, 29, 27, 0.9);
    --shadow-subtle: rgba(0, 0, 0, 0.04);
    --shadow-medium: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.12);
    
    /* Espaçamentos baseados na proporção áurea */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 26px;
    --spacing-xl: 42px;
    --spacing-xxl: 68px;
    --spacing-xxxl: 110px;
    
    /* Transições mais sutis */
    --transition-quick: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Bordas minimalistas */
    --border-radius-sm: 2px;
    --border-radius-md: 6px;
    --border-radius-lg: 12px;
    --border-radius-full: 50px;
    
    /* Sombras elegantes */
    --shadow-card: 0 1px 3px var(--shadow-subtle), 0 1px 2px var(--shadow-subtle);
    --shadow-card-hover: 0 4px 6px var(--shadow-medium), 0 2px 4px var(--shadow-subtle);
    --shadow-elevated: 0 10px 25px var(--shadow-medium), 0 6px 10px var(--shadow-subtle);
    
    /* Container */
    --max-width: 1400px;
    --content-padding: var(--spacing-lg);
}

/* Tipografia Base Minimalista */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografia Serif para títulos */
h1, h2, h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Container Minimalista */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* Botões Corporativos Estilizados - Ultra Compactos */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: none;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-quick);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 113, 60, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #00713c, #00994d);
    color: var(--off-white);
    border: 1px solid rgba(0, 113, 60, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00994d, #00713c);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 113, 60, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Links Corporativos */
a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition-quick);
}

a:hover {
    color: var(--subtle-green);
}

/* Cards Minimalistas */
.card {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

/* Inputs Corporativos */
input, textarea {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--dark-gray);
    transition: all var(--transition-quick);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 113, 60, 0.1);
}

input::placeholder, textarea::placeholder {
    color: var(--medium-gray);
}

/* Header Corporativo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--deep-black);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-smooth);
}

.nav {
    height: 80px;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all var(--transition-smooth);
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    display: block;
}

.logo-img:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Responsividade do logo */
@media (max-width: 767px) {
    .logo {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .logo-img {
        height: 35px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--off-white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--primary-green);
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-quick);
    position: relative;
    padding: var(--spacing-sm) 0;
}

.nav-link:hover {
    color: var(--off-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-green);
    transition: width var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--off-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    padding: var(--spacing-sm);
}

.bar {
    width: 20px;
    height: 1px;
    background: var(--off-white);
    transition: all var(--transition-smooth);
}

/* Hero Section Corporativa */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(29, 29, 27, 0.4), rgba(29, 29, 27, 0.4)), url('../assets/hero-bg.jpg') center center/cover no-repeat;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transition: transform 10s ease-out;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 29, 27, 0.1) 0%, rgba(29, 29, 27, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    padding: 0 var(--content-padding);
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #10b935;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--off-white);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--spacing-xxl);
    letter-spacing: -0.02em;
}

.hero-cta {
    background: linear-gradient(135deg, #00713c 0%, #10b935 50%, #00713c 100%);
    background-size: 200% 200%;
    color: var(--off-white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 113, 60, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #10b935 0%, #00713c 50%, #10b935 100%);
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 53, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.hero-cta:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 113, 60, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-cta:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 113, 60, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(16, 185, 53, 0.3);
}

/* Hero CTA Icon Animation */
.hero-cta svg {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Services Section Corporativa - Modern Design */
.services {
    background: linear-gradient(135deg, #f8faf9 0%, #f0f7f4 100%);
    padding: var(--spacing-xxxl) 0;
    border-top: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0.3;
}

.services::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 113, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxxl);
    position: relative;
    z-index: 2;
}

.section-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(0, 113, 60, 0.08);
    border-radius: var(--border-radius-full);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-black);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--dark-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Service Cards Corporativos - Premium Design */
.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 113, 60, 0.1);
    border-radius: 20px;
    padding: var(--spacing-xxl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 113, 60, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00713c, #10b935, #00713c);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 60, 0.02) 0%, rgba(16, 185, 53, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(0, 113, 60, 0.3);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 113, 60, 0.15), 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px) scale(1.02);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-xl);
    background: linear-gradient(135deg, rgba(0, 113, 60, 0.1), rgba(16, 185, 53, 0.05));
    border-radius: 20px;
    color: var(--primary-green);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 113, 60, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: pulse 2s ease-in-out infinite;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(0, 113, 60, 0.15), rgba(16, 185, 53, 0.1));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 113, 60, 0.2);
}

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

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--deep-black);
    margin-bottom: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.service-card:hover .service-title {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 400;
}

.service-card:hover .service-description {
    color: var(--medium-gray);
    transform: translateY(-1px);
}

/* About Section Corporativa */
.about {
    background: var(--deep-black);
    padding: var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0.3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxxl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

/* Image Showcase - Design Surpreendente e Inovador */
.image-showcase {
    position: relative;
    height: 700px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    perspective: 1000px;
}

.image-main-container {
    position: relative;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 113, 60, 0.15), rgba(16, 185, 53, 0.08));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 113, 60, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 113, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.image-main-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00713c, #10b935, #00713c, #10b935);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.image-main-container:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 100px rgba(0, 113, 60, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 113, 60, 0.5);
}

.image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.2) saturate(1.3) brightness(1.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-main-container:hover .image-main {
    transform: scale(1.08);
    filter: contrast(1.3) saturate(1.4) brightness(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 60, 0.3) 0%, transparent 30%, rgba(16, 185, 53, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.image-main-container:hover .image-overlay {
    opacity: 1;
}

.image-small-group {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.image-small-card {
    position: relative;
    width: 280px;
    height: 220px;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 113, 60, 0.05));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 113, 60, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 50px rgba(0, 113, 60, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-style: preserve-3d;
}

.image-small-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(0, 113, 60, 0.6), rgba(16, 185, 53, 0.4), rgba(0, 113, 60, 0.6));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-small-card:hover {
    transform: translateY(-15px) rotateZ(3deg) scale(1.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 70px rgba(0, 113, 60, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--primary-green);
}

.image-small-card:hover::before {
    opacity: 1;
    animation: cardPulse 2s ease-in-out infinite;
}

.image-small-card:nth-child(2):hover {
    transform: translateY(-15px) rotateZ(-3deg) scale(1.1);
}

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

.image-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 8px;
    filter: brightness(1.2) contrast(1.2) saturate(1.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-small-card:hover .image-small {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.3) contrast(1.3) saturate(1.2) drop-shadow(0 0 30px rgba(0, 113, 60, 0.6));
}

.image-small-card:nth-child(2):hover .image-small {
    transform: scale(1.15) rotate(-5deg);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 113, 60, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    animation: glowRotate 4s linear infinite;
}

.image-small-card:hover .image-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Partículas Flutuantes Mágicas */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 113, 60, 0.8) 0%, rgba(16, 185, 53, 0.4) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.particle:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 85%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) translateX(15px) scale(1.1);
        opacity: 1;
    }
}

.about-content {
    padding: var(--spacing-xl) 0;
}

.about-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--off-white);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--spacing-xxl);
    letter-spacing: -0.01em;
}

.benefits-list {
    margin-bottom: var(--spacing-xxl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.benefit-check {
    color: var(--primary-green);
    font-size: 1.25rem;
    margin-right: var(--spacing-md);
    font-weight: 300;
    flex-shrink: 0;
}

.benefit-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.about-cta {
    background: linear-gradient(135deg, #00713c 0%, #10b935 50%, #00713c 100%);
    background-size: 200% 200%;
    color: var(--off-white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 113, 60, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.about-cta:hover {
    background: linear-gradient(135deg, #10b935 0%, #00713c 50%, #10b935 100%);
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 53, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-cta:hover::before {
    left: 100%;
}

.about-cta:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.about-cta:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 113, 60, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-cta:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 113, 60, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(16, 185, 53, 0.3);
}

/* About CTA Icon Animation */
.about-cta svg {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-cta:hover svg {
    transform: translateX(4px);
}

/* Contact Area - Design Corporativo Moderno */
.contact-area {
    background: var(--off-white);
    padding: var(--spacing-xxxl) 0;
    position: relative;
    overflow: hidden;
}

.contact-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    opacity: 0.5;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-xxxl);
    position: relative;
    z-index: 2;
}

.contact-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(0, 113, 60, 0.1);
    border-radius: var(--border-radius-full);
    backdrop-filter: blur(10px);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-black);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.form-group {
    position: relative;
}

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

.contact-input {
    width: 100%;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--deep-black);
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-input::placeholder {
    color: var(--medium-gray);
    font-style: italic;
}

.contact-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--off-white);
    box-shadow: 0 0 0 3px rgba(0, 113, 60, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.form-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-xl);
}

.contact-submit {
    background: linear-gradient(135deg, #00713c 0%, #10b935 50%, #00713c 100%);
    background-size: 200% 200%;
    color: var(--off-white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 113, 60, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-submit:hover {
    background: linear-gradient(135deg, #10b935 0%, #00713c 50%, #10b935 100%);
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 53, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--off-white);
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Responsividade Contact Area */
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .form-actions {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .contact-submit,
    .contact-whatsapp {
        width: 100%;
        min-width: unset;
    }
}

/* Contact Section Corporativa */
.contact {
    background: var(--deep-black);
    padding: var(--spacing-xxxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--content-padding);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-green);
    opacity: 0.8;
    transition: all var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    opacity: 1;
    transform: scale(1.1);
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--off-white);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.social-icon {
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-green);
    transform: scale(1.1);
}

/* Footer Minimalista */
.footer {
    background: var(--deep-black);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--off-white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.7;
    font-style: normal;
    letter-spacing: -0.01em;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    opacity: 0.5;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsividade */
/* Extra Small - Mobile */
@media (max-width: 575px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-card {
        padding: var(--spacing-xl);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .partner-form {
        flex-direction: column;
        width: 100%;
    }
    
    .partner-input {
        width: 100%;
        min-width: unset;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

/* Small - Mobile Large */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xxl);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-form {
        flex-direction: column;
    }
    
    .partner-input {
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Medium - Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-menu {
        gap: 20px;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xxl);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-item:last-child {
        grid-column: span 2;
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--deep-black);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-elevated);
        padding: var(--spacing-xl) 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .about-cta {
        padding: 14px 28px;
        font-size: 0.75rem;
        min-width: 180px;
    }
    
    .service-card {
        padding: var(--spacing-xl);
    }
    
    .image-showcase {
        height: 500px;
    }
    
    .image-main-container {
        height: 320px;
        border-radius: 20px;
    }
    
    .image-small-card {
        width: 220px;
        height: 170px;
        border-radius: 22px;
    }
    
    .floating-particles {
        display: none;
    }
    
    .partner-form {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .partner-input {
        min-width: 100%;
    }
    
    .partner-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --content-padding: var(--spacing-md);
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .about-grid {
        padding: 0 var(--spacing-md);
    }
    
    .image-showcase {
        height: 400px;
    }
    
    .image-main-container {
        height: 250px;
    }
    
    .image-small-group {
        gap: var(--spacing-md);
    }
    
    .image-small-card {
        width: 180px;
        height: 140px;
    }
    
    .service-card {
        padding: var(--spacing-lg);
    }
}

/* Performance optimizations */
.hero-cta,
.service-card,
.about-cta,
.partner-submit,
.social-icon {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scroll suave adicional */
html {
    scroll-padding-top: 80px;
}

/* Focus states Corporativos */
.hero-cta:focus,
.about-cta:focus,
.partner-submit:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

.social-icon:focus {
    outline: 1px solid var(--primary-green);
    outline-offset: 1px;
}

/* Loading states */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Print styles */
@media print {
    .header,
    .partner-area,
    .contact,
    .footer {
        display: none;
    }
    
    .hero,
    .services,
    .about {
        background: white !important;
        color: black !important;
    }
}

/* Previne layout shift */
.hero-bg,
.image-showcase img {
    background-color: var(--light-gray);
}

/* Estados de Focus e Acessibilidade */
.nav-link:focus,
.hero-cta:focus,
.service-card:focus,
.about-cta:focus,
.partner-input:focus,
.partner-submit:focus,
.social-icon:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Lazy loading para imagens - implementado via atributo loading="lazy" no HTML */

/* Performance: Hardware acceleration */
.hero-cta,
.service-card,
.about-cta,
.partner-submit,
.social-icon {
    will-change: transform;
}

/* Footer Minimalista */
.footer {
    background: var(--deep-black);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--off-white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.7;
    font-style: normal;
    letter-spacing: -0.01em;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    opacity: 0.5;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
    }
}