/* Ajuste visual botão WhatsApp na área de contato */
.btn-whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    min-width: 220px;
    text-align: left;
}
.btn-whatsapp-contact:hover {
    background: #20ba5a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.btn-whatsapp-desc {
    font-size: 0.85em;
    color: #eafff3;
    font-weight: 400;
}
@media (max-width: 480px) {
    .btn-whatsapp-contact {
        min-width: 0;
        font-size: 0.95rem;
        padding: 0.7rem 0.7rem;
    }
    .btn-whatsapp-text {
        font-size: 0.95em;
    }
}
/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: transparent;
    border: none;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}
.whatsapp-float:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    transform: translateY(-4px) scale(1.08);
}
.whatsapp-float:active {
    transform: translateY(-2px) scale(1.02);
}
.whatsapp-float svg {
    display: block;
    width: 56px;
    height: 56px;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 16px;
        display: flex !important;
    }
    .whatsapp-float svg {
        width: 48px;
        height: 48px;
    }
}
@media (max-width: 480px) {
    .whatsapp-float {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 12px;
    }
    .whatsapp-float svg {
        width: 44px;
        height: 44px;
    }
}

.seo-content{
margin:80px 0;
font-size:16px;
line-height:1.6;
color:#555;
}
/* Ajustes HERO customizados */
.hero-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    margin-bottom: 1.2rem;
}

.hero-label {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    margin-bottom: 2.2rem;
}

.hero-cta {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: row !important;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .hero-cta .btn {
        font-size: 0.7rem;
        padding: 0.7rem 1.2rem;
        min-width: 0;
        max-width: 90vw;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --primary-light: #1a2842;
    --accent: #00d4ff;
    --accent-dark: #0099cc;
    --energy-green: #00ff88;
    --text-dark: #0f1419;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-gray: #f7fafc;
    --bg-dark: #0f1419;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    line-height: 1.8;
    color: var(--text-gray);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

.highlight {
    background: linear-gradient(120deg, var(--accent), var(--energy-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--accent);
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--energy-green));
    transition: var(--transition);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
}

.hero-slider img.active {
    opacity: 1;
}

.hero-slider img.loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-email {
    background: var(--text-dark);
    color: white;
}

.btn-email:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes scrollDown {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
}


.about-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.1));
    mix-blend-mode: multiply;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content .lead {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--energy-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-gray);
    font-weight: 500;
}


.segments-section {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.segments-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.segment-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    cursor: pointer;
    transition: var(--transition);
}

.segment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.segment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.9) 100%);
    transition: var(--transition);
}

.segment-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.segment-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.segment-icon svg {
    color: var(--accent);
}

.segment-card h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.segment-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

.segment-card:hover .segment-bg {
    transform: scale(1.1);
}

.segment-card:hover::after {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.3) 0%, rgba(10, 22, 40, 0.9) 100%);
}

.segment-card:hover .segment-icon {
    background: rgba(0, 212, 255, 0.3);
    transform: scale(1.1);
}

.services-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.services-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-featured {
    background: var(--bg-dark);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.service-featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-icon-mini {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-featured h3,
.service-featured p {
    color: white;
}

.service-featured h3 {
    font-size: 1.75rem;
}

.services-grid-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-mini {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-mini:hover {
    background: white;
    border-color: var(--accent);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.service-mini h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-mini p {
    font-size: 0.9375rem;
    margin: 0;
}

.efficiency-section {
    padding: 8rem 0;
    background: var(--bg-dark);
    color: white;
}

.efficiency-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.efficiency-text h2,
.efficiency-text .lead {
    color: white;
}

.efficiency-text h2 {
    margin-bottom: 1.5rem;
}

.efficiency-text .lead {
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
}

.process-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 60px;
}

.process-content h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.efficiency-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.efficiency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent), var(--energy-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


.differentials-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.differentials-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.differential-item {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.differential-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.differential-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent);
}

.differential-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.differential-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.clients-section {
    padding: 6rem 0;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.client-placeholder {
    aspect-ratio: 1;
    background: var(--bg-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.client-placeholder:hover {
    background: white;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-logo-placeholder {
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 8px;
}


.cta-section-dark {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

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

.cta-content-center h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content-center p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.contact-section {
    padding: 8rem 0;
    background: var(--bg-gray);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-modern h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-tagline {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-item-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon-modern {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-text-modern strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-text-modern p {
    margin: 0;
    font-size: 0.9375rem;
}

.contact-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.contact-map-modern {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map-modern iframe {
    display: block;
}


.footer-modern {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-modern img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand-modern p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links-modern h4,
.footer-services-modern h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

.footer-links-modern li,
.footer-services-modern li {
    margin-bottom: 0.75rem;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-services-modern li {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-modern p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-dev {
    color: rgba(255, 255, 255, 0.5);
}

.footer-dev strong {
    color: var(--accent);
    font-weight: 600;
}

.code85-link {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.code85-link:hover {
    color: var(--accent);
    text-decoration: none;
}


@media (max-width: 1024px) {

    .about-grid,
    .efficiency-layout,
    .services-asymmetric,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .segments-scroll {
        grid-template-columns: repeat(3, 1fr);
    }

    .differentials-grid-2x2 {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content-modern {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .container,
    .container-wide {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0 !important;
    }

    .container,
    .container-wide {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1.6rem 1.5rem;
    }

    .nav-logo img {
        height: 36px;
    }

    .hero-label {
    margin-top: 20px;
}

    section {
        padding: 4rem 0 !important;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

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

    .nav-toggle {
        display: flex;
    }

    .scroll-indicator {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .stats-row,
    .benefits-grid,
    .segments-scroll {
        grid-template-columns: 1fr;
    }

    .services-asymmetric {
        gap: 2rem;
    }

    .service-mini {
        flex-direction: column;
    }

    .process-timeline {
        gap: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: auto;
        max-width: none;
        margin-bottom: 40px;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: fit-content;
        transform: none;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}


.parallax-image {
    position: relative;
    overflow: hidden;
}

.parallax-img {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

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


.efficiency-section-new {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.efficiency-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-label.light,
.light-title,
.light-subtitle {
    color: white;
}

.light-title {
    color: white !important;
}

.light-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.efficiency-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.efficiency-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.efficiency-card-new:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.efficiency-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.efficiency-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--energy-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 2rem;
}

.efficiency-card-new h3 {
    font-size: 1.375rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.efficiency-card-new p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.benefits-section-new {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2842 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

.benefits-hero {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.benefits-hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.benefits-lead {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text-light {
    color: var(--accent);
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card-new:hover::before {
    opacity: 1;
}

.benefit-card-new:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3);
}

.benefit-visual {
    margin-bottom: 2.5rem;
}

.benefit-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--accent), var(--energy-green));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.benefit-card-new:hover .benefit-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
}

.benefit-card-new h3 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.benefit-card-new p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}


@media (max-width: 1024px) {
    .efficiency-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .efficiency-grid-new,
    .benefits-grid-new {
        grid-template-columns: 1fr;
    }

    .efficiency-section-new,
    .benefits-section-new {
        padding: 4rem 0;
    }

    .efficiency-card-new,
    .benefit-card-new {
        padding: 2.5rem 2rem;
    }

    .efficiency-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}


.ev-infrastructure-section {
    padding: 5rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.ev-infrastructure-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(0, 255, 136, 0.02));
    pointer-events: none;
}

.ev-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.ev-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.ev-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.ev-highlight {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 255, 136, 0.05));
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    margin-bottom: 3rem;
}

.ev-highlight strong {
    color: var(--primary);
    font-weight: 700;
}

.ev-problems {
    margin-bottom: 3rem;
}

.ev-problems h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ev-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ev-problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 12px;
    transition: var(--transition);
}

.ev-problem-item:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateX(5px);
}

.ev-problem-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EF4444;
}

.ev-problem-item span {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}

.ev-solutions {
    margin-bottom: 3rem;
}

.ev-solutions-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.ev-solutions h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.ev-solutions-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ev-solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ev-solution-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(0, 255, 136, 0.03));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ev-solution-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 255, 136, 0.08));
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.2);
}

.solution-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 212, 255, 0.15);
    line-height: 1;
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.solution-icon svg {
    color: white;
}

.ev-solution-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.ev-solution-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.ev-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ev-cta {
    margin-top: 3rem;
}

.ev-visual {
    position: sticky;
    top: 120px;
}

.ev-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
}

.ev-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.ev-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.2) 0%, rgba(10, 22, 40, 0.5) 100%);
    pointer-events: none;
}

.ev-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.ev-badge svg {
    flex-shrink: 0;
    color: var(--accent);
}

.ev-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ev-badge-text strong {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 700;
}

.ev-badge-text span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.ev-stats-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ev-stat-mini {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.ev-stat-mini:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ev-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.ev-stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}


@media (max-width: 1024px) {
    .ev-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ev-visual {
        position: relative;
        top: 0;
    }

    .ev-image img {
        height: 450px;
    }

    .ev-problems-grid {
        grid-template-columns: 1fr;
    }

    .ev-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ev-infrastructure-section {
        padding: 4rem 0;
    }

    .ev-image img {
        height: 350px;
    }

    .ev-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .ev-stats-mini {
        grid-template-columns: 1fr;
    }

    .ev-highlight {
        padding: 1rem 1.25rem;
    }

    .ev-solutions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ev-solution-card {
        padding: 1.5rem;
    }

    .solution-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    .solution-icon {
        width: 48px;
        height: 48px;
    }

    .ev-solutions h3 {
        font-size: 1.5rem;
    }

    .ev-solutions-subtitle {
        font-size: 1rem;
    }
}