@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --green-900: #14532D;
    --green-800: #166534;
    --green-700: #15803D;
    --green-600: #16A34A;
    --green-500: #22C55E;
    --green-400: #4ADE80;
    --green-300: #86EFAC;
    --green-200: #BBF7D0;
    --green-100: #DCFCE7;
    --green-50: #F0FDF4;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10B981;
    --emerald-50: #ECFDF5;
    --teal-600: #0D9488;
    --teal-500: #14B8A6;
    --text-dark: #1E3A2F;
    --text-body: #3D5A4F;
    --text-muted: #6B8A7E;
    --text-light: #94B5A8;
    --bg-white: #FFFFFF;
    --bg-off: #F8FBF9;
    --bg-light: #F0F7F3;
    --bg-section: #E8F5EC;
    --border-light: #D5E8DC;
    --border-soft: #E2EFE7;
    --gradient-hero: linear-gradient(160deg, #E8F5EC 0%, #D1FAE5 30%, #A7F3D0 70%, #6EE7B7 100%);
    --gradient-cta: linear-gradient(135deg, var(--green-600) 0%, var(--emerald-600) 50%, var(--teal-600) 100%);
    --gradient-card: linear-gradient(145deg, var(--green-50) 0%, var(--emerald-50) 100%);
    --gradient-soft: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
    --shadow-xs: 0 1px 3px rgba(20, 83, 45, 0.06);
    --shadow-sm: 0 2px 8px rgba(20, 83, 45, 0.08);
    --shadow-md: 0 8px 30px rgba(20, 83, 45, 0.1);
    --shadow-lg: 0 20px 50px rgba(20, 83, 45, 0.12);
    --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
    width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.nav-logo img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--green-700);
    background: var(--green-50);
}

.nav-links a.active {
    color: var(--green-700);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--green-600);
    border-radius: 3px;
}

.nav-cta {
    background: var(--gradient-cta) !important;
    color: var(--bg-white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(22, 163, 74, 0.4) !important;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(22, 163, 74, 0.5);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    background: radial-gradient(circle, var(--green-300), transparent 70%);
}

.hero-shape:nth-child(1) {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation: float-shape 12s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float-shape 10s ease-in-out infinite reverse;
}

.hero-shape:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    animation: float-shape 8s ease-in-out infinite 2s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--green-700);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green-600);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 .highlight {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
}

.hero-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card .hf-icon {
    width: 40px;
    height: 40px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.hero-floating-card .hf-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--green-700);
    fill: none;
}

.hero-floating-card .hf-number {
    font-family: 'Outfit';
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-700);
}

.hero-floating-card .hf-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-floating-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--bg-white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite 1.5s;
}

.hero-floating-badge .hfb-icon {
    width: 36px;
    height: 36px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-floating-badge .hfb-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--green-700);
    fill: none;
}

.hero-floating-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Outfit';
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-700);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-light);
    border-radius: 14px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--green-600);
    border-radius: 4px;
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-outline {
    background: var(--bg-white);
    color: var(--green-700);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--green-600);
    background: var(--green-50);
}

.btn-outline svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.btn-white {
    background: var(--bg-white);
    color: var(--green-700);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-white svg {
    width: 20px;
    height: 20px;
    stroke: var(--green-700);
    fill: none;
}

.btn-secondary {
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--green-100);
    border-color: var(--green-300);
}

/* ===================== SECTIONS ===================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-off);
}

.section-green {
    background: var(--bg-section);
}

.section-gradient {
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.section-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm-30 30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--emerald-600);
    margin-bottom: 16px;
}

.section-tag .line {
    width: 30px;
    height: 2px;
    background: var(--emerald-500);
    border-radius: 2px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== ICON STYLE ===================== */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--green-50);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.icon-box svg {
    width: 26px;
    height: 26px;
    stroke: var(--green-700);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-box-lg {
    width: 64px;
    height: 64px;
}

.icon-box-lg svg {
    width: 30px;
    height: 30px;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-cta);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .icon-box {
    background: var(--gradient-cta);
    border-color: transparent;
}

.service-card:hover .icon-box svg {
    stroke: var(--bg-white);
}

.service-card .icon-box {
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--emerald-600);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

.service-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--green-800);
}

/* ===================== ABOUT ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 480px;
}

.about-img-main {
    width: 360px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-white);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    width: 260px;
    height: 210px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: absolute;
    bottom: 50px;
    right: 0;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

.about-floating-card {
    position: absolute;
    bottom: 10px;
    left: 30px;
    background: var(--gradient-cta);
    color: var(--bg-white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

.about-floating-card .number {
    font-family: 'Outfit';
    font-size: 2.5rem;
    font-weight: 800;
}

.about-floating-card .label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-text .section-tag {
    justify-content: flex-start;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--green-700);
    fill: none;
    stroke-width: 3;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ===================== ALCANCE ===================== */
.alcance-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.alcance-card {
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.alcance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
}

.alcance-card .icon-box-lg {
    margin-bottom: 24px;
}

.alcance-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.alcance-card .card-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.alcance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alcance-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-body);
    font-size: 0.88rem;
    line-height: 1.5;
}

.alcance-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--green-600);
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
    stroke-width: 2.5;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--bg-white);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== GALLERY ===================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.75), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===================== CONTACT ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: var(--bg-white);
    transition: var(--transition);
    color: inherit;
}

.contact-card:hover {
    border-color: var(--green-300);
    background: var(--green-50);
    transform: translateX(6px);
}

.contact-card:hover .icon-box {
    background: var(--gradient-cta);
    border-color: transparent;
}

.contact-card:hover .icon-box svg {
    stroke: var(--bg-white);
}

.contact-card .info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-card .info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-soft);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-form-wrapper>p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
    background: var(--gradient-cta);
    color: var(--bg-white);
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.35);
}

/* ===================== PAGE HEADER (for subpages) ===================== */
.page-header {
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--green-700);
    font-weight: 500;
}

.breadcrumb span {
    color: var(--text-light);
}

/* ===================== DETAIL SECTIONS (subpages) ===================== */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-grid.reverse {
    direction: rtl;
}

.detail-grid.reverse>* {
    direction: ltr;
}

.detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--bg-white);
}

.detail-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.detail-img:hover img {
    transform: scale(1.03);
}

.detail-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.detail-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.detail-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--green-600);
    fill: none;
    flex-shrink: 0;
    margin-top: 3px;
    stroke-width: 2.5;
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.08);
    }
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--green-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 55px;
    background: var(--bg-white);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
    background: var(--emerald-500);
    border-color: var(--emerald-500);
}

.footer-social a:hover svg {
    fill: var(--bg-white);
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--emerald-500);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--green-300);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid {
        gap: 40px;
    }

    .about-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #16A34A 0%, #059669 50%, #0D9488 100%);
        background-size: 200% 200%;
        animation: gradient-shift 6s ease infinite;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 32px;
        gap: 20px;
        transition: clip-path 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
        clip-path: circle(0px at calc(100% - 40px) 40px);
        box-shadow: none;
        border-left: none;
        z-index: 1000;
        pointer-events: none;
        opacity: 0;
    }

    .nav-links.open {
        clip-path: circle(150% at calc(100% - 40px) 40px);
        pointer-events: all;
        opacity: 1;
    }

    .nav-links a {
        width: auto;
        padding: 10px 20px;
        font-family: 'Outfit', sans-serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--bg-white);
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation delays for menu items */
    .nav-links.open li:nth-child(1) a {
        transition-delay: 0.1s;
    }

    .nav-links.open li:nth-child(2) a {
        transition-delay: 0.2s;
    }

    .nav-links.open li:nth-child(3) a {
        transition-delay: 0.3s;
    }

    .nav-links.open li:nth-child(4) a {
        transition-delay: 0.4s;
    }

    .nav-links.open li:nth-child(5) a {
        transition-delay: 0.5s;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--green-200);
        background: transparent;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 20px;
        font-size: 1.5rem !important;
        padding: 16px 36px !important;
        background: var(--bg-white) !important;
        color: var(--green-700) !important;
        border-radius: var(--radius-lg) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .hamburger.active span {
        background: var(--bg-white);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .stat {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 340px;
    }

    .about-img-main {
        width: 100%;
    }

    .about-img-secondary {
        width: 180px;
        right: 10px;
        bottom: 30px;
    }

    .alcance-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid,
    .detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 70px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .about-floating-card {
        left: 10px;
        padding: 16px 20px;
    }

    .about-floating-card .number {
        font-size: 2rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }
}