:root {
    --navy: #0d2340;
    --teal: #1ba8a0;
    --teal-light: #22c5bc;
    --white: #ffffff;
    --gray: #f4f6f8;
    --text-dark: #0d2340;
    --text-mid: #4a5568;
    --text-light: #8a9bb0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-icon {
    height: 40px;
    position: relative;
}

.logo-t {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 34px;
    color: var(--white);
    line-height: 1;
}

.logo-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 24px;
    border: 3px solid var(--teal);
    border-top: none;
    border-right: 3px solid var(--teal);
    border-left: none;
    border-radius: 70px 0 70px 0;
    transform: translate(-50%, -50%) rotate(35deg);
}

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

.logo-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 8px;
    color: var(--teal-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--teal-light);
}

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}
.nav-cta:hover {
    background: var(--teal-light) !important;
}

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    gap: 6px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    -webkit-transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
}

/* ── LANGUAGE SELECTOR ── */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 12px;
}
.lang-btn {
    padding: 6px 12px;
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.lang-btn:hover {
    color: var(--teal-light);
}
.lang-btn.active {
    color: var(--teal-light);
    border-bottom: 2px solid var(--teal-light);
}

/* ── HERO ── */
.hero {
    margin-top: 68px;
    min-height: calc(100vh - 68px);
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        #0a3a5c 60%,
        #0d4a6e 100%
    );
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 70% 50%,
            rgba(27, 168, 160, 0.18) 0%,
            transparent 70%
        ),
        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' fill-rule='evenodd'%3E%3Cg fill='%231ba8a0' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* hero image background */
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    padding: 0 5%;
    max-width: 700px;
    animation: fadeUp 0.8s ease both;
    z-index: 10;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    background: rgba(27, 168, 160, 0.2);
    border: 1px solid rgba(27, 168, 160, 0.4);
    color: var(--teal-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--teal-light);
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.btn-secondary:hover {
    border-color: var(--teal-light);
    background: rgba(27, 168, 160, 0.1);
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--teal);
    padding: 28px 5%;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
}
.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 110px;
}

/* ── VALUES ── */
.values {
    padding: 80px 5%;
    background: var(--gray);
    text-align: center;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-mid);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 56px;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    background: var(--white);
    border-radius: 10px;
    padding: 36px 28px;
    width: 180px;
    box-shadow: 0 4px 20px rgba(13, 35, 64, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    text-align: center;
    cursor: pointer;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 35, 64, 0.12);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #616161;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.value-icon.icon-precision {
    background: #e3f2fd;
    color: #1976d2;
}

.value-icon.icon-security {
    background: #ffebee;
    color: #d32f2f;
}

.value-icon.icon-experience {
    background: #e8f5e9;
    color: #388e3c;
}

.value-icon.icon-efficiency {
    background: #fff3e0;
    color: #f57c00;
}

.value-icon.icon-commitment {
    background: #f5f5f5;
    color: #616161;
}

.value-name {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.value-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
}

/* ── SERVICES ── */
.services {
    padding: 100px 5%;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border: 1.5px solid #e8edf3;
    border-radius: 12px;
    padding: 40px 32px;
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        transform 0.25s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
}
.service-card:hover::before {
    transform: scaleY(1);
}
.service-card:hover {
    border-color: rgba(27, 168, 160, 0.3);
    box-shadow: 0 8px 32px rgba(13, 35, 64, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #f5f5f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    color: #616161;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.service-icon.icon-classification {
    background: #e3f2fd;
    color: #1976d2;
}

.service-icon.icon-valuation {
    background: #fff3e0;
    color: #f57c00;
}

.service-icon.icon-origin {
    background: #e8f5e9;
    color: #388e3c;
}

.service-icon.icon-imports {
    background: #e3f2fd;
    color: #1976d2;
}

.service-icon.icon-consulting {
    background: #f0f4ff;
    color: #1ba8a0;
}

.service-icon.icon-procedures {
    background: #f5f5f5;
    color: #616161;
}

.service-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── WHY ── */
.why {
    padding: 100px 5%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(27, 168, 160, 0.15) 0%,
        transparent 70%
    );
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.why-left .section-label {
    color: var(--teal-light);
}
.why-left .section-title {
    color: var(--white);
}
.why-left .section-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-check {
    width: 32px;
    height: 32px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: white;
}

.why-item-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px;
}

.why-item-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-metric {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: background 0.25s;
    cursor: pointer;
}
.why-metric:hover {
    background: rgba(27, 168, 160, 0.15);
}

.why-metric-num {
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--teal-light);
    margin-bottom: 6px;
}

.why-metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── CONTACT ── */
.contact {
    padding: 100px 5%;
    background: var(--gray);
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-inner .section-desc {
    margin-bottom: 48px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1.5px solid #dce4ef;
    border-radius: 6px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 8px;
}

.form-error {
    display: block;
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
}

.form-input {
    border: 1.5px solid #dce4ef;
    border-radius: 6px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--teal);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 500;
    font-size: 14px;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.alert-error {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #f44336;
}

/* ── FOOTER ── */
footer {
    background: #081828;
    padding: 60px 5% 30px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo-name {
    font-size: 18px;
    margin-bottom: 4px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--teal-light);
}

.footer-contact-item a {
    display: inline;
    margin-bottom: 0;
    background: none;
    outline: none;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    align-items: center;
    line-height: 1.2;
}

.footer-contact-item a,
.footer-contact-item span:not(.footer-icon) {
    line-height: 1.2;
}

.footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    vertical-align: middle;
}

.footer-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.footer-icon.icon-website {
    color: #1ba8a0;
}

.footer-icon.icon-email {
    color: #f57c00;
}

.footer-icon.icon-phone {
    color: #388e3c;
}

.footer-icon.icon-instagram {
    color: #e4405f;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-float {
    position: fixed;
    bottom: 120px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: float-in 0.5s ease-out forwards;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float:hover {
    background: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── SERVICIO DETAIL PAGE ── */
.hero-servicio {
    margin-top: 68px;
    min-height: 400px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-servicio-content {
    max-width: 800px;
    padding: 0 5%;
    z-index: 10;
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--teal-light);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--white);
}

.hero-servicio-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-servicio-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.servicio-contenido {
    padding: 80px 5%;
    background: var(--white);
}

.servicio-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
}

.section-block {
    margin-bottom: 56px;
    text-align: left;
}

.section-block h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-block > p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-list li {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--teal);
    background: #f0fffe;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-item h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

.servicio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: #f9fbfd;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 28px 24px;
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, var(--navy), #0a3a5c);
    border-color: transparent;
    color: white;
}

.sidebar-box h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 12px;
}

.sidebar-box p {
    font-size: 13px;
    color: inherit;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-box .btn-primary {
    width: 100%;
    text-align: center;
    display: block;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.info-list a:hover {
    color: var(--teal);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
}

.stat-value {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--teal-light);
}

.servicio-cta {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.servicio-cta h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.servicio-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .servicio-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-right {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-links {
        display: none;
    }

    .stat {
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        padding: 12px 16px;
        border-radius: 4px;
        transition: background 0.2s;
    }

    .nav-links a:hover {
        background: rgba(27, 168, 160, 0.2);
    }

    .nav-links .nav-cta {
        background: var(--teal);
        text-align: center;
        padding: 12px 16px;
    }

    .nav-links .language-selector {
        margin-left: 16px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
    }

    .hamburger {
        display: flex !important;
    }

    /* WhatsApp button adjustment for tablets */
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .stat {
        padding: 12px 20px;
    }
    .stats-bar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 16px;
    }
    .stat:last-child {
        border-bottom: none;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }

    /* Mobile menu adjustments */
    nav {
        padding: 0 12px;
    }

    .nav-logo {
        gap: 8px;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 7px;
    }

    .nav-links {
        top: 68px;
        padding: 12px;
        gap: 8px;
    }

    .nav-links a {
        padding: 10px 12px;
        font-size: 12px;
    }

    .hamburger {
        width: 48px;
        height: 48px;
        gap: 6px;
        display: flex !important;
        z-index: 1001;
        padding: 4px;
        overflow: visible;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        -webkit-transform: rotate(45deg) translate(7px, 7px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        -webkit-transform: rotate(-45deg) translate(5px, -5px);
    }

    /* WhatsApp button adjustment for mobile */
    .whatsapp-float {
        bottom: 160px;
        right: 12px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float i {
        font-size: 24px !important;
    }
}
