:root {
    --blue-dark: #003b71;
    --blue-main: #005ba8;
    --blue-soft: #eaf5ff;

    --green-main: #4da241;
    --green-dark: #2f7d2f;
    --green-soft: #edf8ed;

    --white: #ffffff;
    --dark: #121820;
    --text: #1f2a44;
    --muted: #5f6b7a;
    --border: #e5edf5;

    --shadow: 0 16px 40px rgba(0, 47, 91, 0.14);
    --shadow-soft: 0 8px 22px rgba(0, 47, 91, 0.08);

    --container: 1280px;
    --topbar-height: 34px;
    --navbar-height: 84px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

/* QUITAR CUADRO NEGRO DE FOCO */
.nav-menu a:focus,
.nav-menu a:focus-visible,
.btn-nav:focus,
.btn-nav:focus-visible,
.logo-box:focus,
.logo-box:focus-visible,
button:focus,
button:focus-visible,
a:focus,
a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.nav-menu a:focus-visible {
    color: var(--blue-dark);
}

.nav-menu a:focus-visible::after {
    width: 100%;
    background: var(--green-main);
}

.btn-nav:focus-visible,
.btn:focus-visible,
.hero-more-btn:focus-visible,
.carousel-btn:focus-visible,
.contact-form button:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(77, 162, 65, 0.22), 0 12px 24px rgba(0, 59, 113, 0.16) !important;
}

input:focus,
select:focus,
textarea:focus {
    outline: none !important;
}

/* SVG ICON SYSTEM */
.svg-icon,
.svg-icon svg,
.service-icon svg,
.highlight-icon svg,
.about-icon svg,
.metric-icon svg,
.environment-svg svg,
.contact-item svg,
.social-link svg,
.footer-socials svg,
.whatsapp-float svg,
.btn svg,
.card-action svg,
.home-service-icon svg,
.gallery-main-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    flex-shrink: 0;
}

.top-left .svg-icon,
.top-right .svg-icon {
    font-size: 15px;
}

.btn .svg-icon {
    font-size: 18px;
}

.social-link .svg-icon {
    font-size: 23px;
}

.footer-socials .svg-icon {
    font-size: 20px;
}

.whatsapp-float .svg-icon {
    font-size: 28px;
}

/* TOP BAR */
.top-bar {
    height: var(--topbar-height);
    background: linear-gradient(90deg, #00365f, #002c4f);
    color: #ffffff;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 200;
}

.top-bar-content {
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-left a,
.top-right span,
.top-right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
}

.top-right a,
.top-left a {
    transition: 0.2s ease;
}

.top-right a:hover,
.top-left a:hover {
    color: #9be58f;
}

/* NAVBAR */
.navbar {
    height: var(--navbar-height);
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 59, 113, 0.08);
    position: sticky;
    top: var(--topbar-height);
    z-index: 190;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

.nav-content {
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo-box {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-box img {
    width: 245px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #26324c;
    position: relative;
    transition: 0.25s ease;
    white-space: nowrap;
}

.nav-menu a:not(.btn-nav)::after {
    content: "";
    width: 0;
    height: 3px;
    background: var(--green-main);
    position: absolute;
    left: 0;
    bottom: -13px;
    border-radius: 99px;
    transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--blue-dark);
}

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

.btn-nav {
    background: var(--green-main);
    color: #ffffff !important;
    padding: 14px 21px;
    border-radius: 7px;
    font-weight: 800 !important;
    box-shadow: 0 12px 24px rgba(77, 162, 65, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-nav:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.btn-nav .svg-icon {
    font-size: 17px;
}

.menu-toggle {
    display: none;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: var(--blue-dark);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    place-items: center;
}

.menu-icon {
    line-height: 1;
    display: block;
}

/* APP */
.app-shell {
    min-height: calc(100vh - var(--topbar-height) - var(--navbar-height));
    background: #ffffff;
    position: relative;
}

.view {
    display: none;
    min-height: calc(100vh - var(--topbar-height) - var(--navbar-height));
    animation: viewFade 0.35s ease both;
}

.view.active {
    display: block;
}

@keyframes viewFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* BUTTONS */
.btn {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--blue-dark);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 59, 113, 0.22);
}

.btn-blue:hover {
    background: #002c55;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.86);
    color: var(--green-dark);
    border: 1.5px solid rgba(77, 162, 65, 0.55);
    box-shadow: 0 10px 24px rgba(0, 59, 113, 0.07);
}

.btn-outline:hover {
    background: #ffffff;
    border-color: var(--green-main);
}

/* HERO INICIO */
.hero-view {
    position: relative;
    overflow: hidden;
    background: var(--blue-dark);
}

.hero-banner {
    min-height: 640px;
    height: calc(100vh - var(--topbar-height) - var(--navbar-height) - 80px);
    max-height: 740px;
    position: relative;
    overflow: hidden;
    background: var(--blue-dark);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.08) saturate(1.24) contrast(1.08) brightness(0.88);
    transform: scale(1.01);
    animation: heroImageCinematic 18s ease-in-out infinite alternate;
}

.hero-background::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(
                    90deg,
                    rgba(0, 59, 113, 0.78) 0%,
                    rgba(0, 59, 113, 0.58) 34%,
                    rgba(0, 59, 113, 0.34) 64%,
                    rgba(0, 59, 113, 0.20) 100%
            ),
            rgba(0, 59, 113, 0.10);
}

.hero-dark-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
            linear-gradient(
                    115deg,
                    rgba(0, 59, 113, 0.46) 0%,
                    rgba(0, 91, 168, 0.22) 14%,
                    transparent 14.2%,
                    transparent 100%
            ),
            linear-gradient(
                    110deg,
                    transparent 0%,
                    transparent 80%,
                    rgba(77, 162, 65, 0.22) 80.2%,
                    rgba(0, 59, 113, 0.14) 100%
            );
}

.hero-blue-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
            radial-gradient(circle at 50% 44%, rgba(0, 91, 168, 0.12), transparent 30%),
            radial-gradient(circle at 18% 80%, rgba(77, 162, 65, 0.12), transparent 28%),
            linear-gradient(180deg, rgba(0, 59, 113, 0.04), rgba(0, 59, 113, 0.18));
    animation: heroLightSweep 5.8s ease-in-out infinite alternate;
}

.hero-banner-content {
    position: relative;
    z-index: 8;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-banner-text {
    max-width: 1050px;
    margin: 0 auto;
    color: #ffffff;
    padding: 40px 0;
    animation: heroTextImpact 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-kicker {
    position: relative;
    display: inline-block;
    color: #ffffff !important;
    font-size: clamp(13px, 1vw, 17px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 28px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
    animation: heroKickerImpact 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-kicker::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -13px;
    width: 180px;
    height: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.75) !important;
}

.hero-banner-text h1 {
    max-width: 880px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 1.07;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
    animation: heroTitleImpact 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-banner-text h1 .hero-blue-word {
    color: var(--green-main) !important;
}

.hero-banner-text h1 strong {
    display: block;
    color: #ffffff !important;
    font: inherit;
}

.hero-more-btn {
    margin-top: 34px;
    min-width: 170px;
    min-height: 58px;
    padding: 0 34px;
    background: var(--green-main);
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(77, 162, 65, 0.32);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    animation:
            heroButtonImpact 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both,
            heroButtonPulse 2.8s ease-in-out 1.4s infinite;
}

.hero-more-btn:hover {
    background: var(--green-dark);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-soft-light,
.hero-water-wave,
.hero-curve,
.hero-highlights,
.hero-content,
.hero-text,
.hero-title-line {
    display: none !important;
    content: none !important;
}

.hero-view::after,
.hero-banner::before,
.hero-banner::after {
    display: none !important;
    content: none !important;
}

@keyframes heroImageCinematic {
    0% {
        transform: scale(1.01) translateX(0);
        filter: grayscale(0.08) saturate(1.18) contrast(1.05) brightness(0.86);
    }

    100% {
        transform: scale(1.055) translateX(-10px);
        filter: grayscale(0.04) saturate(1.28) contrast(1.1) brightness(0.92);
    }
}

@keyframes heroTextImpact {
    0% {
        opacity: 0;
        transform: translateY(38px) scale(0.96);
        filter: blur(8px);
    }

    55% {
        opacity: 1;
        transform: translateY(-4px) scale(1.015);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroKickerImpact {
    0% {
        opacity: 0;
        transform: translateY(-18px);
        letter-spacing: 0.26em;
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.14em;
        filter: blur(0);
    }
}

@keyframes heroTitleImpact {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.94);
        filter: blur(7px);
    }

    60% {
        opacity: 1;
        transform: translateY(-3px) scale(1.015);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroButtonImpact {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.88);
    }

    70% {
        opacity: 1;
        transform: translateY(-4px) scale(1.04);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroButtonPulse {
    0%, 100% {
        box-shadow: 0 18px 38px rgba(77, 162, 65, 0.30);
    }

    50% {
        box-shadow: 0 22px 48px rgba(77, 162, 65, 0.48);
    }
}

@keyframes heroLightSweep {
    0% {
        opacity: 0.65;
        transform: translateX(-18px);
    }

    100% {
        opacity: 1;
        transform: translateX(18px);
    }
}

/* CARRUSEL INICIO */
.home-services-strip {
    position: relative;
    z-index: 20;
    background: #ffffff;
    padding: 36px 0 58px;
    box-shadow: 0 -16px 36px rgba(0, 47, 91, 0.08);
}

.home-services-carousel {
    position: relative;
    z-index: 8;
    margin: 0 auto;
    background: #ffffff;
}

.home-carousel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
}

.eyebrow,
.home-carousel-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-main);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.home-carousel-header h2 {
    color: var(--blue-dark);
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(0, 59, 113, 0.10);
    background: #ffffff;
    color: var(--blue-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(0, 47, 91, 0.12);
    transition: 0.25s ease;
}

.carousel-btn:hover {
    background: var(--blue-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.home-carousel-window {
    overflow: hidden;
    border-radius: 22px;
    padding: 4px;
}

.home-services-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-service-card {
    min-width: calc((100% - 54px) / 4);
    height: 190px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #dcecf8;
    box-shadow: 0 14px 34px rgba(0, 47, 91, 0.13);
    cursor: pointer;
    border: 1px solid rgba(0, 59, 113, 0.08);
    transition: 0.28s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 47, 91, 0.20);
}

.home-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.home-service-card:hover img {
    transform: scale(1.06);
}

.home-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(0deg, rgba(0, 31, 56, 0.88), rgba(0, 31, 56, 0.12) 62%),
            linear-gradient(90deg, rgba(0, 59, 113, 0.22), transparent);
    z-index: 1;
}

.home-service-info {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 18px;
    color: #ffffff;
}

.home-service-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.home-service-number {
    min-width: 38px;
    height: 26px;
    border-radius: 999px;
    background: rgba(77, 162, 65, 0.95);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.home-service-icon {
    display: none !important;
}

.home-service-info h3 {
    font-size: 16px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.2px;
}

.home-service-info span {
    display: inline-flex;
    margin-top: 9px;
    color: #9be58f;
    font-size: 12px;
    font-weight: 900;
}

/* GENERAL SCREEN */
.screen-content {
    min-height: calc(100vh - var(--topbar-height) - var(--navbar-height));
    padding: 54px 0 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.screen-header {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 40px;
}

.screen-header h2 {
    font-size: clamp(31px, 3vw, 46px);
    line-height: 1.08;
    color: var(--blue-dark);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.screen-header p {
    color: #526173;
    font-size: 15.5px;
    font-weight: 500;
}

/* ABOUT */
.about-screen {
    position: relative;
}

.about-screen::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(77, 162, 65, 0.08);
    left: -120px;
    top: 80px;
    pointer-events: none;
}

.about-screen::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(0, 59, 113, 0.06);
    right: -80px;
    bottom: 80px;
    pointer-events: none;
}

.premium-about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.18fr 1fr 1fr;
    gap: 24px;
}

.about-card,
.main-about-card {
    position: relative;
    background: #ffffff;
    color: var(--text);
    border: 1px solid rgba(0, 59, 113, 0.10);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 14px 36px rgba(0, 47, 91, 0.08);
    min-height: 360px;
    transition: 0.28s ease;
    overflow: hidden;
}

.about-card::before,
.main-about-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-dark), var(--green-main));
    opacity: 1;
    transition: 0.25s ease;
}

.about-card:hover,
.main-about-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(0, 47, 91, 0.14);
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    border-color: rgba(77, 162, 65, 0.35);
    color: #ffffff;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
}

.about-badge.soft-green {
    background: var(--green-soft);
    color: var(--green-dark);
}

.about-badge.soft-blue {
    background: var(--blue-soft);
    color: var(--blue-dark);
}

.about-card:hover .about-badge,
.main-about-card:hover .about-badge {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.about-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 27px;
    margin-bottom: 24px;
    transition: 0.25s ease;
}

.about-icon.green {
    background: var(--green-soft);
    color: var(--green-main);
}

.about-icon.blue {
    background: var(--blue-soft);
    color: var(--blue-dark);
}

.about-card:hover .about-icon,
.main-about-card:hover .about-icon {
    transform: scale(1.05) rotate(-3deg);
    background: var(--green-main);
    color: #ffffff;
}

.about-card h3,
.main-about-card h3 {
    font-size: 24px;
    color: inherit;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.about-card p,
.main-about-card p,
.about-card:not(.main-about-card) p {
    color: #526173;
    opacity: 1;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.55;
}

.about-card:hover p,
.main-about-card:hover p,
.about-card:hover h3,
.main-about-card:hover h3 {
    color: #ffffff;
}

.about-tags,
.about-mini-list {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.about-tags span,
.about-mini-list span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    color: #334155;
}

.about-card:hover .about-tags span,
.main-about-card:hover .about-tags span,
.about-card:hover .about-mini-list span,
.main-about-card:hover .about-mini-list span {
    color: #ffffff;
}

.about-tags .svg-icon,
.about-mini-list .svg-icon {
    color: var(--green-main);
    margin-top: 2px;
    font-size: 15px;
}

.about-card:hover .about-tags .svg-icon,
.main-about-card:hover .about-tags .svg-icon,
.about-card:hover .about-mini-list .svg-icon,
.main-about-card:hover .about-mini-list .svg-icon {
    color: #9be58f;
}

.about-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.metric-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 59, 113, 0.10);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 26px rgba(0, 47, 91, 0.07);
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    border-color: rgba(77, 162, 65, 0.35);
}

.metric-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--blue-dark);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 23px;
}

.metric-icon.green {
    background: var(--green-main);
}

.metric-card:hover .metric-icon {
    background: var(--green-main);
    color: #ffffff;
}

.metric-card strong {
    display: block;
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 3px;
}

.metric-card p {
    color: #5f6b7a;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.35;
}

.metric-card:hover strong,
.metric-card:hover p {
    color: #ffffff;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 59, 113, 0.10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 47, 91, 0.09);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    transition: 0.28s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77, 162, 65, 0.45);
    box-shadow: 0 26px 55px rgba(0, 47, 91, 0.20);
}

.service-image {
    width: 100%;
    height: 230px;
    background: #f4f9ff;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 59, 113, 0.08);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: 0.35s ease;
}

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

.service-content {
    position: relative;
    padding: 54px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: background 0.28s ease, color 0.28s ease;
}

.service-card:hover .service-content {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
}

.service-icon {
    position: absolute;
    top: -34px;
    left: 26px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 24px;
    border: 6px solid #ffffff;
    box-shadow: 0 14px 26px rgba(0, 59, 113, 0.18);
    transition: 0.28s ease;
}

.service-icon.blue {
    background: var(--blue-dark);
}

.service-icon.green {
    background: var(--green-main);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-4deg);
    background: var(--green-main);
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-width: 42px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.service-card:nth-child(even) .service-number {
    background: var(--green-soft);
    color: var(--green-dark);
}

.service-card:hover .service-number {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.service-content h3 {
    color: var(--blue-dark);
    font-size: 21px;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.service-content p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.48;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-card:hover .service-content h3,
.service-card:hover .service-content p,
.service-card:hover .card-action {
    color: #ffffff;
}

.card-action {
    margin-top: auto;
    border: none;
    background: transparent;
    color: var(--blue-main);
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: 0.25s ease;
    width: fit-content;
}

.card-action:hover,
.service-card:hover .card-action {
    transform: translateX(4px);
}

.card-action .svg-icon {
    font-size: 16px;
}

.service-card:hover .card-action .svg-icon {
    color: #9be58f;
}

/* ENVIRONMENT */
.environment-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: center;
}

.environment-info {
    background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
            linear-gradient(135deg, rgba(0, 59, 113, 0.98), rgba(0, 91, 168, 0.93));
    color: #ffffff;
    border-radius: 24px;
    padding: 44px;
    min-height: 470px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.environment-info .eyebrow {
    color: #8ee481;
}

.environment-info h2 {
    font-size: clamp(31px, 3vw, 45px);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 18px;
}

.environment-info p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
}

.environment-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 26px;
}

.environment-highlights span {
    min-height: 76px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    text-align: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    padding: 10px;
}

.environment-highlights .svg-icon {
    color: #9be58f;
    font-size: 22px;
}

.environment-info .btn {
    align-self: flex-start;
}

.environment-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
}

.environment-card h3 {
    color: var(--blue-dark);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 22px;
}

.environment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.environment-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #f7fbff;
    border: 1px solid var(--border);
    color: #334155;
    font-weight: 700;
    font-size: 13.5px;
    transition: 0.28s ease;
}

.environment-item:hover {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    color: #ffffff;
    border-color: rgba(77, 162, 65, 0.35);
    transform: translateY(-4px);
}

.environment-svg {
    width: 24px;
    min-width: 24px;
    color: var(--green-main);
    display: inline-flex;
    margin-top: 2px;
}

.environment-item:hover .environment-svg {
    color: #9be58f;
}

/* CLIENTS */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.client-card {
    min-height: 190px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    transition: 0.28s ease;
}

.client-card:hover {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    border-color: rgba(77, 162, 65, 0.35);
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.client-logo-box {
    width: 100%;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box img {
    max-width: 210px;
    max-height: 84px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.28s ease;
}

.client-card:hover .client-logo-box img {
    transform: scale(1.04);
}

.client-fallback {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 59, 113, 0.96), rgba(77, 162, 65, 0.90));
    display: none;
    place-items: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.client-card h3 {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
}

.client-card p {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.client-card:hover h3 {
    color: #ffffff;
}

.client-card:hover p {
    color: #9be58f;
}

/* GALERÍA / PROYECTOS - TARJETAS ANCHAS CON TEXTO ABAJO */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.gallery-card {
    background: #ffffff;
    border: 1px solid rgba(0, 59, 113, 0.10);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 47, 91, 0.10);
    transition: 0.28s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 47, 91, 0.18);
    border-color: rgba(77, 162, 65, 0.38);
}

.gallery-media-frame {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    isolation: isolate;
}

.gallery-card-video .gallery-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
            linear-gradient(0deg, rgba(0, 35, 66, 0.20), transparent 45%),
            linear-gradient(90deg, rgba(0, 59, 113, 0.18), transparent 55%);
    pointer-events: none;
}

.gallery-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #dcecf8;
    filter: saturate(1.08) contrast(1.04) brightness(0.94);
    transform: scale(1.01);
    transition: 0.45s ease;
}

.gallery-card-video:hover .gallery-video {
    transform: scale(1.055);
    filter: saturate(1.18) contrast(1.08) brightness(1);
}

.gallery-icon-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
            radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 25%),
            radial-gradient(circle at 90% 20%, rgba(77, 162, 65, 0.18), transparent 30%),
            linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 64%, #064f83 100%);
}

.gallery-icon-media::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(77, 162, 65, 0.16);
    right: -80px;
    top: -70px;
    transition: 0.35s ease;
}

.gallery-icon-media::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    left: -120px;
    bottom: -145px;
    transition: 0.35s ease;
}

.gallery-main-icon {
    position: relative;
    z-index: 2;
    width: 128px;
    height: 128px;
    border-radius: 34px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 62px;
    box-shadow:
            0 22px 50px rgba(0, 0, 0, 0.18),
            inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    transition: 0.35s ease;
}

.gallery-card-icon:hover .gallery-main-icon {
    transform: translateY(-8px) scale(1.08) rotate(-4deg);
    background: var(--green-main);
    color: #ffffff;
}

.gallery-card-icon:hover .gallery-icon-media::before {
    transform: scale(1.18) translate(-8px, 10px);
    background: rgba(77, 162, 65, 0.25);
}

.gallery-card-icon:hover .gallery-icon-media::after {
    transform: scale(1.1);
}

.gallery-card-body {
    padding: 24px 26px 28px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 59, 113, 0.08);
    transition: 0.28s ease;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-category {
    display: inline-flex;
    width: fit-content;
    color: var(--green-main);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.35;
    margin-bottom: 10px;
}

.gallery-card-body h3 {
    color: var(--blue-dark);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.55px;
}

.gallery-card:hover .gallery-card-body {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
}

.gallery-card:hover .gallery-category {
    color: #9be58f;
}

.gallery-card:hover .gallery-card-body h3 {
    color: #ffffff;
}

.gallery-overlay {
    display: none !important;
}

/* CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 34px;
    align-items: stretch;
}

.contact-info {
    background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
            linear-gradient(135deg, rgba(0, 59, 113, 0.98), rgba(0, 91, 168, 0.93));
    color: #ffffff;
    border-radius: 24px;
    padding: 44px;
    box-shadow: var(--shadow);
}

.contact-info .eyebrow {
    color: #8ee481;
}

.contact-info h2 {
    font-size: clamp(31px, 3vw, 45px);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 18px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 28px;
}

.contact-items {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}

.contact-item > .svg-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    flex-shrink: 0;
    font-size: 18px;
}

.contact-item a,
.contact-item span {
    color: #ffffff;
}

.contact-socials {
    margin-bottom: 26px;
    padding-top: 8px;
}

.contact-socials h3 {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 21px;
    transition: 0.25s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.04);
}

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-link.x-twitter {
    background: #000000;
}

.social-link.whatsapp {
    background: #25d366;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 14px;
    transition: 0.28s ease;
}

.contact-form:hover {
    border-color: rgba(77, 162, 65, 0.35);
    box-shadow: 0 22px 48px rgba(0, 47, 91, 0.13);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 16px;
    outline: none;
    background: #f9fcff;
    color: var(--text);
    font-size: 14px;
    transition: 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: var(--blue-main);
    box-shadow: 0 0 0 4px rgba(0, 91, 168, 0.08);
}

.contact-form button {
    border: none;
    min-height: 52px;
    border-radius: 12px;
    background: var(--green-main);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: 0.25s ease;
}

.contact-form button:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* FOOTER */
.site-footer {
    background: #0b0d10;
    color: rgba(255, 255, 255, 0.85);
    padding: 32px 0;
    border-top: none !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 36px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand img {
    width: 155px;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 6px;
}

.footer-brand-text h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.footer-brand-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 380px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.92);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 18px;
    transition: 0.25s ease;
}

.footer-socials a:hover {
    background: var(--green-main);
    transform: translateY(-2px);
}

/* FLOAT BUTTONS */
.whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    min-width: 152px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
    z-index: 300;
    transition: 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.02);
    background: #1ebe5d;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--green-main);
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 300;
    box-shadow: 0 10px 22px rgba(77, 162, 65, 0.25);
    font-size: 20px;
    font-weight: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .nav-menu {
        gap: 16px;
    }

    .logo-box img {
        width: 220px;
    }

    .hero-banner {
        height: auto;
        min-height: 600px;
    }

    .hero-banner-text h1 {
        font-size: clamp(34px, 7vw, 54px);
        max-width: 760px;
    }

    .home-service-card {
        min-width: calc((100% - 36px) / 3);
    }

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

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

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

    .gallery-media-frame {
        height: 310px;
    }

    .premium-about-grid,
    .about-metrics,
    .environment-layout,
    .contact-layout,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 960px) {
    :root {
        --navbar-height: 78px;
    }

    .top-right span {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 5%;
        border-top: 1px solid var(--border);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 13px 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .btn-nav {
        text-align: center;
        justify-content: center;
        margin-top: 8px;
        border-radius: 8px;
    }

    .hero-banner {
        min-height: 560px;
    }

    .hero-banner-text h1 {
        font-size: clamp(32px, 7vw, 54px);
        max-width: 760px;
    }

    .hero-kicker {
        font-size: 12px;
        line-height: 1.45;
        max-width: 92%;
    }

    .hero-kicker::after {
        width: 150px;
    }

    .home-carousel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-service-card {
        min-width: calc((100% - 18px) / 2);
    }

    .screen-content {
        justify-content: flex-start;
        padding-top: 44px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .top-bar {
        height: auto;
        position: relative;
    }

    .navbar {
        top: 0;
    }

    .top-bar-content {
        min-height: auto;
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .top-left {
        gap: 12px;
        flex-wrap: wrap;
    }

    .top-right {
        display: none;
    }

    .logo-box img {
        width: 205px;
    }

    .view,
    .screen-content {
        min-height: auto;
    }

    .hero-banner {
        min-height: 520px;
    }

    .hero-background img {
        object-position: center;
    }

    .hero-banner-text {
        padding: 34px 0;
    }

    .hero-kicker {
        font-size: 10.5px;
        line-height: 1.4;
        max-width: 92%;
        letter-spacing: 0.10em;
    }

    .hero-banner-text h1 {
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -0.7px;
    }

    .hero-more-btn {
        min-width: 150px;
        min-height: 50px;
        font-size: 14px;
    }

    .home-services-strip {
        padding: 30px 0 44px;
    }

    .home-service-card {
        min-width: 82%;
        height: 185px;
    }

    .carousel-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .services-grid,
    .clients-grid,
    .gallery-grid,
    .environment-list,
    .environment-highlights {
        grid-template-columns: 1fr;
    }

    .gallery-media-frame {
        height: 300px;
    }

    .gallery-card-body {
        min-height: auto;
        padding: 22px 22px 26px;
    }

    .gallery-card-body h3 {
        font-size: 23px;
    }

    .service-card {
        min-height: auto;
    }

    .service-image {
        height: 220px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .screen-content {
        padding: 36px 0 70px;
    }

    .about-card,
    .main-about-card,
    .environment-info,
    .environment-card,
    .contact-info,
    .contact-form {
        padding: 28px;
    }

    .metric-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .social-links {
        justify-content: flex-start;
    }

    .whatsapp-float {
        min-width: auto;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        padding: 0;
    }

    .whatsapp-float span:last-child {
        display: none;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 460px) {
    .container {
        width: 90%;
    }

    .logo-box img {
        width: 178px;
    }

    .nav-content {
        min-height: 72px;
    }

    .hero-banner {
        min-height: 500px;
    }

    .hero-banner-text h1 {
        font-size: 28px;
    }

    .hero-kicker {
        font-size: 10px;
    }

    .screen-header h2,
    .environment-info h2,
    .contact-info h2 {
        font-size: 29px;
    }

    .footer-brand img {
        width: 132px;
    }

    .gallery-media-frame {
        height: 255px;
    }

    .gallery-main-icon {
        width: 96px;
        height: 96px;
        font-size: 46px;
        border-radius: 26px;
    }

    .gallery-card-body h3 {
        font-size: 21px;
    }

    .gallery-category {
        font-size: 11px;
    }
}

/* LIMPIEZA FINAL */
.site-footer {
    border-top: none !important;
}

.home-service-icon {
    display: none !important;
}