/* Capa de diseño profesional para Manitas Urgente */
:root {
    --brand-navy: #0f2537;
    --brand-blue: #1f5f8b;
    --brand-orange: #ff8a00;
    --brand-orange-dark: #e66f00;
    --brand-mint: #25d366;
    --surface: #ffffff;
    --surface-soft: #f4f7fb;
    --surface-tint: #fff7ec;
    --text-strong: #14212d;
    --text-muted: #667789;
    --ring: rgba(255, 138, 0, 0.22);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-card: 0 18px 45px rgba(15, 37, 55, 0.10);
    --shadow-button: 0 12px 25px rgba(255, 138, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 8% 4%, rgba(255, 138, 0, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: var(--text-strong);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 37, 55, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 37, 55, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 55%);
    z-index: -1;
}

.container {
    width: min(1180px, calc(100% - 32px));
    padding: 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 37, 55, 0.08);
}

.nav-shell,
nav {
    min-height: 78px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 950;
    letter-spacing: -0.8px;
}

.logo::before {
    content: "⚡";
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-orange), #ffbd5c);
    box-shadow: 0 12px 24px rgba(255, 138, 0, 0.24);
    font-size: 17px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: rgba(244, 247, 251, 0.92);
    border: 1px solid rgba(15, 37, 55, 0.07);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 999px;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--brand-navy);
    background: var(--surface);
    box-shadow: 0 8px 20px rgba(15, 37, 55, 0.08);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 900;
    letter-spacing: -0.1px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.32) 42%, transparent 62%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), #ffb347);
    color: #19120a;
    box-shadow: 0 16px 34px rgba(255, 138, 0, 0.32);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-orange-dark), var(--brand-orange));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(255, 138, 0, 0.38);
}

.btn-secondary {
    background: rgba(255,255,255,0.92);
    color: var(--brand-navy);
    border-color: rgba(15, 37, 55, 0.13);
    box-shadow: 0 10px 24px rgba(15, 37, 55, 0.06);
}

.btn-secondary:hover {
    background: var(--brand-navy);
    color: #fff;
    border-color: var(--brand-navy);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(15, 37, 55, 0.18);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.24);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--brand-navy);
    transform: translateY(-3px);
}

.hero {
    position: relative;
    padding: 96px 0 72px;
    text-align: left;
    background:
        radial-gradient(circle at 82% 20%, rgba(255, 138, 0, 0.26), transparent 24%),
        radial-gradient(circle at 15% 80%, rgba(37, 211, 102, 0.14), transparent 24%),
        linear-gradient(135deg, #081927 0%, #0f2537 48%, #1f5f8b 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -240px;
    top: -280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -160px -10%;
    height: 260px;
    background: #fff;
    transform: rotate(-2deg);
    transform-origin: left center;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: 54px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffe2b8;
    font-size: 14px;
    font-weight: 900;
    border: 1px solid rgba(255,255,255,0.12);
}

.hero h1 {
    max-width: 800px;
    color: #fff;
    font-size: clamp(39px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -3px;
    margin-bottom: 22px;
}

.hero p {
    margin-left: 0;
    margin-right: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 30px;
}

.hero-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 34px;
    padding: 30px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
    color: var(--text-strong);
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-orange), #ffcc7a, var(--brand-mint));
}

.panel-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-tint);
    color: var(--brand-orange-dark);
    font-weight: 950;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.hero-panel h2 {
    margin-bottom: 16px;
    color: var(--brand-navy);
    font-size: 26px;
    line-height: 1.15;
    text-align: left;
}

.hero-panel ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 20px 0;
    padding: 0;
}

.hero-panel li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--text-muted);
    line-height: 1.45;
}

.hero-panel li::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--surface-tint);
    color: var(--brand-orange);
    font-weight: 950;
}

.panel-contact {
    margin-top: 22px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f2537, #174261);
    color: #fff;
}

.panel-contact span {
    display: block;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    margin-bottom: 4px;
}

.panel-contact strong {
    display: block;
    font-size: 26px;
    letter-spacing: -0.8px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    max-width: 720px;
}

.hero-stats div {
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(12px);
}

.hero-stats strong {
    display: block;
    font-size: 23px;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stats span {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

section {
    position: relative;
    padding: 84px 0;
}

.section-kicker {
    display: block;
    text-align: center;
    color: var(--brand-orange);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    margin-bottom: 10px;
}

section h2 {
    color: var(--brand-navy);
    letter-spacing: -1.2px;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.1;
}

#servicios,
#profesionales,
#confianza {
    background: var(--surface);
}

#proceso,
#contacto,
#faq,
#testimonios {
    background: var(--surface-soft);
}

.services-grid,
.process-grid,
.trust-grid,
.grid {
    gap: 22px;
}

.service-card,
.step-card,
.advantage-card,
.faq-item,
.testimonial-card,
.trust-item,
.form-container {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(15, 37, 55, 0.08);
    box-shadow: 0 14px 34px rgba(15, 37, 55, 0.07);
    background: rgba(255,255,255,0.94);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.step-card:hover,
.faq-item:hover,
.testimonial-card:hover,
.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 37, 55, 0.12);
    border-color: rgba(255, 138, 0, 0.22);
}

.service-card::after,
.step-card::after,
.trust-item::after,
.testimonial-card::after {
    content: "";
    position: absolute;
    inset: auto 24px 0 24px;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--brand-orange), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.service-card:hover::after,
.step-card:hover::after,
.trust-item:hover::after,
.testimonial-card:hover::after {
    opacity: 1;
}

.service-icon,
.trust-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--surface-tint);
    color: var(--brand-orange);
    font-size: 25px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.step-card span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-orange), #ffbd5c);
    color: #1b1208;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(255, 138, 0, 0.24);
}

.form-container {
    max-width: 820px;
    padding: 36px;
    margin-top: 28px;
}

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

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 850;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 50px;
    border-radius: 15px;
    border: 1px solid rgba(15, 37, 55, 0.12);
    background: #fbfdff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px var(--ring);
    background: #fff;
}

.form-submit {
    width: 100%;
    min-height: 56px;
}

.testimonial-card .stars {
    color: var(--brand-orange);
    letter-spacing: 2px;
}

.trust-icon {
    background: linear-gradient(135deg, var(--brand-navy), #1f5f8b);
    color: #fff;
}

.whatsapp-float {
    right: 28px;
    bottom: 28px;
}

.whatsapp-float a {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--brand-mint), #6be98f);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.36);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 28px 58px rgba(37, 211, 102, 0.42);
}

.cookie-banner {
    backdrop-filter: blur(10px);
}

.cookie-content {
    border-radius: 24px;
    border: 1px solid rgba(15, 37, 55, 0.10);
    box-shadow: var(--shadow-card);
}

footer {
    position: relative;
    background:
        radial-gradient(circle at 78% 24%, rgba(255,138,0,.18), transparent 26%),
        linear-gradient(180deg, #081927, #06131d);
    padding: 72px 0 58px;
    overflow: hidden;
}

footer h3 {
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

footer p {
    font-size: 18px;
    opacity: .88;
}

.footer-links {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.9);
    text-decoration: none;
    transition: all .2s ease;
}

.footer-links a:hover {
    background: #fff;
    color: var(--brand-navy);
}

@media (max-width: 980px) {
    .nav-shell,
    nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .logo {
        width: 100%;
        justify-content: center;
        font-size: 25px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

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

    .hero-panel {
        max-width: 620px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .nav-actions {
        width: 100%;
        justify-content: stretch;
    }

    .nav-actions .btn {
        flex: 1;
        padding-inline: 14px;
        min-height: 58px;
        font-size: 15px;
    }

    .nav-links {
        padding: 6px;
        gap: 4px;
    }

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

    .hero {
        padding: 58px 0 50px;
        text-align: left;
    }

    .hero::after {
        height: 150px;
        bottom: -92px;
    }

    .hero h1 {
        letter-spacing: -1.6px;
        font-size: clamp(38px, 12vw, 52px);
    }

    .hero p {
        font-size: 17px;
    }

    .hero-btns .btn {
        width: 100%;
        min-height: 56px;
    }

    .hero-stats,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        border-radius: 28px;
        padding: 24px;
    }

    .panel-contact strong {
        font-size: 24px;
    }

    section {
        padding: 64px 0;
    }

    .form-container {
        padding: 24px;
        border-radius: 22px;
    }

    .service-card,
    .step-card,
    .faq-item,
    .testimonial-card,
    .trust-item {
        border-radius: 22px;
    }

    footer {
        padding: 62px 0 48px;
    }

    footer h3 {
        font-size: 30px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-float a {
        width: 62px;
        height: 62px;
    }
}
