/* 
   JVGEO Creative Modern Design - Layout completamente novo e criativo
   Aproveitando apenas as cores e imagens originais
*/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.85) 0%, rgba(42, 82, 89, 0.9) 50%, rgba(30, 58, 66, 0.95) 100%),
        url('../images/topographic-background.jpg') center/cover fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Navegação moderna flutuante */
.modern-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(48, 92, 105, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modern-nav .logo {
    height: 35px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.modern-nav .logo:hover {
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transform: translateY(-1px);
}

.modern-nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.modern-nav .nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.modern-nav .nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.modern-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a7c59, #325466);
    transition: width 0.3s ease;
}

.modern-nav .nav-links a:hover::after {
    width: 100%;
}

.modern-nav .cta-btn {
    background: linear-gradient(45deg, #4a7c59, #3a7281);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-nav .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero section revolucionária */
.hero-revolution {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-revolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(74, 124, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(58, 114, 129, 0.12) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #4a7c59, #3a7281);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(83, 99, 158, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern::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.5s ease;
}

.btn-primary-modern:hover::before {
    left: 100%;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(83, 99, 158, 0.4);
}

.btn-secondary-modern {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Logo em Destaque */
.hero-logo {
    margin: 2rem 0;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-logo img {
    height: 280px;
    max-width: 90%;
    object-fit: contain;
    filter: brightness(1.05) drop-shadow(0 15px 40px rgba(0,0,0,0.4));
    animation: logoGlow 4s ease-in-out infinite;
}

/* Responsividade para o logo principal */
@media screen and (max-width: 768px) {
    .hero-logo img {
        height: 200px;
        max-width: 95%;
    }
    
    .modern-nav .logo {
        height: 28px;
        max-width: 100px;
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 15px 40px rgba(0,0,0,0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 20px 50px rgba(74, 124, 89, 0.3));
        transform: scale(1.02);
    }
}

/* Floating logo */
.floating-logo {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-logo img {
    height: 200px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Seção de stats moderna com overlay da nova imagem */
.stats-modern {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.15) 0%, rgba(74, 124, 89, 0.1) 100%),
        rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.stats-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(90, 133, 144, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(74, 112, 120, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.stats-modern .stats-grid {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(83, 99, 158, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(83, 99, 158, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a7c59, #3a7281);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Seção Quem Somos Moderna */
.quem-somos-modern {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.03) 0%, rgba(74, 124, 89, 0.02) 100%),
        rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: block;
    width: 100%;
    clear: both;
}

.quem-somos-modern::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -15%;
    width: 50%;
    height: 60%;
    background: 
        radial-gradient(ellipse at center, rgba(74, 124, 89, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.quem-somos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quem-somos-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.quem-somos-content .highlight-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quem-somos-content .description-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 400;
}

.quem-somos-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.quem-somos-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 124, 89, 0.3);
}

.quem-somos-image .team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(1.05) contrast(1.1);
    transition: all 0.4s ease;
}

.quem-somos-image:hover .team-image {
    filter: brightness(1.1) contrast(1.15);
    transform: scale(1.02);
}

/* Responsividade para Quem Somos */
@media screen and (max-width: 1024px) {
    .quem-somos-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .quem-somos-content h2 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .quem-somos-modern {
        padding: 6rem 0;
    }
    
    .quem-somos-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .quem-somos-content .highlight-text {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .quem-somos-content .description-text {
        font-size: 1.05rem;
    }
    
    .quem-somos-image .team-image {
        height: 280px;
    }
}

/* ============================================
   REVOLUTIONARY SERVICES SECTION - 3D DESIGN
   ============================================ */

.services-revolutionary {
    padding: 10rem 0 8rem;
    background: 
        linear-gradient(135deg, rgba(30, 58, 66, 0.95) 0%, rgba(42, 82, 89, 0.9) 50%, rgba(48, 92, 105, 0.85) 100%),
        url('../images/topographic-background.jpg') center/cover fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(58, 114, 129, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
    z-index: 0;
}

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

.services-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Services Hero Section */
.services-hero {
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
}

.services-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(74, 124, 89, 0.2);
    border: 2px solid rgba(74, 124, 89, 0.4);
    border-radius: 50px;
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(74, 124, 89, 0); }
}

.services-hero h2 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 50%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
}

.services-hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Stats Pills */
.services-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.stat-pill:nth-child(2) { animation-delay: -2s; }
.stat-pill:nth-child(3) { animation-delay: -4s; }

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

.stat-pill:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(74, 124, 89, 0.4);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #22c55e;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Services Ecosystem - 3D Grid Layout */
.services-ecosystem {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1000px;
}

/* 3D Service Cards */
.service-card-3d {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(58, 114, 129, 0.05) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

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

.service-card-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(74, 124, 89, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Card Layouts */
.main-service {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}

.secondary-service {
    grid-column: 2;
    grid-row: 1;
}

.compact-service {
    grid-column: 2;
    grid-row: 2;
}

.vertical-service {
    grid-column: 1 / 3;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 300px;
    align-items: center;
    min-height: 200px;
}

/* Service Image 3D */
.service-image-3d {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.main-service .service-image-3d {
    height: 350px;
}

.compact-service .service-image-3d {
    height: 180px;
}

.vertical-service .service-image-3d {
    height: 200px;
    border-radius: 20px;
    margin-left: 2rem;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(1.1) contrast(1.1);
}

.service-card-3d:hover .service-img {
    transform: scale(1.08);
    filter: brightness(1.2) contrast(1.2);
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 124, 89, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card-3d:hover .service-glow {
    opacity: 1;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48, 92, 105, 0.8) 0%, rgba(74, 124, 89, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card-3d:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    color: white;
    transform: scale(0.7) rotate(-10deg);
    transition: all 0.4s ease;
}

.service-card-3d:hover .service-icon {
    transform: scale(1) rotate(0deg);
}

/* Service Content 3D */
.service-content-3d {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.main-service .service-content-3d {
    padding: 3rem;
    flex: 1;
}

.compact-service .service-content-3d {
    padding: 2rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-category {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.service-content-3d h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-service .service-content-3d h3 {
    font-size: 2.5rem;
}

.compact-service .service-content-3d h3 {
    font-size: 1.6rem;
}

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

.compact-service .service-content-3d p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Service Highlights */
.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.highlight-item::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Vertical Stats */
.vertical-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.v-stat {
    text-align: center;
}

.v-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22c55e;
    display: block;
    line-height: 1;
}

.v-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Service CTAs */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
    background: linear-gradient(135deg, #22c55e, #4a7c59);
}

.service-cta.compact {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.service-cta.vertical {
    padding: 1.2rem 2.5rem;
}

.service-cta svg {
    transition: all 0.3s ease;
}

.service-cta:hover svg {
    transform: translateX(5px);
}

/* Services CTA Section */
.services-cta-section {
    margin-top: 6rem;
    text-align: center;
}

.cta-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.cta-button-revolutionary {
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #22c55e, #4a7c59);
    border: none;
    border-radius: 60px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.cta-button-revolutionary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.4);
}

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

.cta-button-revolutionary:hover .button-glow {
    left: 100%;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .services-ecosystem {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .main-service,
    .secondary-service,
    .compact-service {
        grid-column: 1;
        grid-row: auto;
    }
    
    .vertical-service {
        grid-template-columns: 1fr;
        grid-column: 1;
    }
    
    .vertical-service .service-image-3d {
        margin-left: 0;
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .services-revolutionary {
        padding: 6rem 0 4rem;
    }
    
    .services-hero h2 {
        font-size: 3rem;
    }
    
    .services-stats {
        gap: 1rem;
    }
    
    .stat-pill {
        padding: 1rem 1.5rem;
    }
    
    .service-content-3d {
        padding: 2rem;
    }
    
    .service-card-3d:hover {
        transform: translateY(-10px);
    }
}

/* End Revolutionary Services Section */

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.services-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(83, 99, 158, 0.1), transparent);
    transition: left 0.8s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(83, 99, 158, 0.3);
}

.service-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

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

.service-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-link {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

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

/* Footer minimalista */
.footer-modern {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #4a7c59;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

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

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

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(48, 92, 105, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(83, 99, 158, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(83, 99, 158, 0.8);
}

/* Responsividade */
@media (max-width: 1024px) {
    .modern-nav {
        padding: 0.8rem 1.5rem;
        gap: 1.5rem;
    }
    
    .modern-nav .nav-links {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .floating-logo {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
}

/* Modern Clients Section */
.clients-modern {
    padding: 5rem 2rem;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.clients-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.clients-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a7c59, #325466);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.clients-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 2rem;
    padding: 2rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

.marquee-content img {
    height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(0.3);
    padding: 8px;
    border-radius: 8px;
}

.marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

/* Modern Contact Section */
.contact-modern {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a7c59, #325466);
    border-radius: 50%;
}

.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.85) 0%, rgba(50, 84, 102, 0.9) 100%),
        linear-gradient(45deg, rgba(74, 124, 89, 0.1) 0%, rgba(58, 114, 129, 0.1) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(90, 133, 144, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(74, 112, 120, 0.12) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-2%, 2%) rotate(1deg); }
    66% { transform: translate(2%, -1%) rotate(-1deg); }
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-details p {
    color: #cbd5e1;
    margin: 0;
}

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

.contact-visual {
    position: relative;
}

.contact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2rem;
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .clients-header h2 {
        font-size: 2.5rem;
    }
    
    .marquee-content img {
        height: 40px;
    }
    
    .contact-actions {
        justify-content: center;
    }
}

/* Enhanced Contact Section */
.contact-enhanced {
    padding: 8rem 2rem 6rem;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.85) 0%, rgba(42, 82, 89, 0.9) 50%, rgba(30, 58, 66, 0.95) 100%),
        url('../images/topographic-background.jpg') center/cover fixed;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 124, 89, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(58, 114, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.contact-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #22c55e);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 124, 89, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(74, 124, 89, 0.1);
    border: 2px solid rgba(74, 124, 89, 0.6);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #4a7c59;
    color: white;
    border-color: #4a7c59;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
}

.contact-cta {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary-modern {
    background: white;
    color: #4a7c59;
    border: 2px solid white;
}

.cta-actions .btn-primary-modern:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-actions .btn-secondary-modern {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-actions .btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .contact-enhanced {
        padding: 6rem 1rem 4rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-cta {
        padding: 3rem 2rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Page Hero */
.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #4a7c59 0%, #325466 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Modern */
.content-modern {
    padding: 6rem 2rem;
    background: white;
}

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

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

.content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 2rem;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* MVV Modern */
.mvv-modern {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mvv-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.mvv-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.mvv-card p {
    color: #64748b;
    line-height: 1.6;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.mvv-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Responsive */
/* Process Timeline */
.process-timeline {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.timeline-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.timeline-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.timeline-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4a7c59, #22c55e);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    margin-left: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4a7c59;
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-duration {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-enhanced {
        padding: 4rem 1rem 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-actions {
        justify-content: center;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-timeline {
        padding: 4rem 1rem;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    .timeline-header h2 {
        font-size: 2rem;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.03) 0%, rgba(74, 124, 89, 0.02) 100%),
        rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(74, 124, 89, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(58, 114, 129, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.services-intro {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.services-intro p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Services Grid Modern */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 124, 89, 0.3);
}

.service-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1.1);
}

.service-card-modern:hover .service-img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48, 92, 105, 0.7) 0%, rgba(74, 124, 89, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-icon-modern {
    color: white;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1);
}

.service-content-modern {
    padding: 2.5rem;
}

.service-content-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-content-modern p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.service-highlight-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(74, 124, 89, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

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

/* Project Highlight Box */
.project-highlight {
    background: rgba(74, 124, 89, 0.1);
    border-left: 4px solid #4a7c59;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.project-highlight p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}

.project-highlight strong {
    color: #22c55e;
    font-weight: 600;
}

/* Services Stats Section */
.services-stats {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stats-container h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 124, 89, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4a7c59;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.4;
}

/* Responsividade */
@media screen and (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .services-intro h2 {
        font-size: 3rem;
    }
    
    .stats-container h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .services-overview {
        padding: 6rem 0;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-intro h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .services-intro p {
        font-size: 1.15rem;
    }
    
    .service-content-modern {
        padding: 2rem;
    }
    
    .stats-grid-services {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Events Page Styles */
/* Events Overview Section */
.events-overview {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.03) 0%, rgba(74, 124, 89, 0.02) 100%),
        rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
}

.events-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(74, 124, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(58, 114, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.events-intro {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-intro h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.events-intro p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(74, 124, 89, 0.4);
}

.event-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1.1);
}

.event-card:hover .event-img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48, 92, 105, 0.8) 0%, rgba(74, 124, 89, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-icon {
    color: white;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1);
}

.event-content {
    padding: 2.5rem;
}

.event-date {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.event-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

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

.event-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(74, 124, 89, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.highlight-icon {
    font-size: 1.2rem;
}

.event-highlight span:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, #305c69 0%, #2a5259 50%, #1e3a42 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(48, 92, 105, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.timeline-container h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #ffffff;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #4a7c59, #325466);
    box-shadow: 0 0 8px rgba(74, 124, 89, 0.4);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.6rem;
    top: 0.5rem;
    width: 1.2rem;
    height: 1.2rem;
    background: linear-gradient(135deg, #4a7c59, #325466);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.3), 0 2px 8px rgba(0,0,0,0.2);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 1px solid rgba(74, 124, 89, 0.3);
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.2);
}

.timeline-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #22c55e;
    line-height: 1.6;
    font-weight: 400;
}

/* Achievement Stats */
.achievement-stats {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.05) 0%, rgba(74, 124, 89, 0.03) 100%),
        rgba(255, 255, 255, 0.01);
    position: relative;
}

.achievement-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(58, 114, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

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

.achievement-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 124, 89, 0.3);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4a7c59;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.achievement-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.4;
}

/* Events CTA */
.events-cta {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(48, 92, 105, 0.85) 0%, rgba(42, 82, 89, 0.9) 50%, rgba(30, 58, 66, 0.95) 100%),
        url('../images/topographic-background.jpg') center/cover fixed;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.events-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(74, 124, 89, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Responsividade para Events */
@media screen and (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .events-intro h2 {
        font-size: 3rem;
    }
    
    .timeline-container h2 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .events-overview {
        padding: 6rem 0;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .events-intro h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .events-intro p {
        font-size: 1.15rem;
    }
    
    .event-content {
        padding: 2rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .achievement-item {
        padding: 2rem 1.5rem;
    }
    
    .achievement-number {
        font-size: 2.8rem;
    }
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 8rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-content {
    padding: 2rem;
}

.service-image {
    order: 2;
}

.service-block.reverse .service-image {
    order: 1;
}

.service-block.reverse .service-content {
    order: 2;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    flex-shrink: 0;
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.service-intro {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-list li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    font-size: 0.95rem;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 1rem;
}

.service-list li:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08), rgba(34, 197, 94, 0.08));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid #4a7c59;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.highlight-icon {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.highlight-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Services CTA */
.services-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #305c69 0%, #2a5259 50%, #1e3a42 100%);
    text-align: center;
    color: white;
}

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

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 968px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .service-block.reverse {
        direction: ltr;
    }
    
    .service-image {
        order: 1;
    }
    
    .service-content {
        order: 2;
        padding: 1rem;
    }
    
    .service-block.reverse .service-image,
    .service-block.reverse .service-content {
        order: unset;
    }
    
    .service-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .services-detailed {
        padding: 2rem 0;
    }
    
    .service-block {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .service-header h2 {
        font-size: 1.7rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary-modern,
    .cta-buttons .btn-secondary-modern {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Hide original elements */
#header, #menu, #banner, #footer {
    display: none !important;
}

.wrapper {
    display: none !important;
}

/* Body adjustments */
body {
    padding-top: 0 !important;
}
