﻿*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg2: #141414;
    --bg3: #1a1a1a;
    --orange: #f97316;
    --orange-dim: rgba(249, 115, 22, 0.1);
    --white: #f2f2f2;
    --gray: #888;
    --border: rgba(255, 255, 255, 0.07);
    --font: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.accent {
    color: var(--orange);
}

/* â•â•â• NAV â•â•â• */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
}

.nav.scrolled {
    padding: 12px 60px;
}

.nav__logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-deco {
    color: var(--orange);
}

.logo-fam {
    color: var(--white);
}

.nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--orange);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s;
}

.nav__cta:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* MOBILE MENU */
.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mob-menu.open {
    display: flex;
}

.mob-link {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    transition: color 0.2s;
}

.mob-link:hover {
    color: var(--orange);
}

.mob-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 8px;
}

/* â•â•â• HERO â•â•â• */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.55) saturate(0.85);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.35) 55%, rgba(10, 10, 10, 0.08) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
}

.hero__title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.outline {
    -webkit-text-stroke: 2px rgba(249, 115, 22, 0.6);
    color: transparent;
}

.hero__sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 40px;
}

.hero__sub strong {
    color: var(--white);
}

/* BOTONES */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: var(--orange);
    color: white;
    border-radius: 50px;
    overflow: hidden;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-main i {
    margin-left: 18px;
}

.btn-main span {
    padding: 14px 16px 14px 8px;
}

.btn-arrow {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-main:hover {
    background: #ea6c0a;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.btn-main.big span {
    padding: 16px 20px 16px 10px;
    font-size: 1rem;
}

.btn-main.big .btn-arrow {
    width: 54px;
    height: 54px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid #25D366;
    color: #25D366;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.3s;
}

.btn-wa:hover {
    background: #25D366;
    color: white;
}

.btn-wa.big {
    padding: 16px 28px;
    font-size: 1rem;
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    transition: all 0.3s;
}

.btn-email:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.stat-plus {
    font-size: 1.1rem;
    font-weight: 900;
    vertical-align: super;
    margin-left: 2px;
    color: var(--orange);
}

.stat span {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

.hero__scroll span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* â•â•â• TICKER â•â•â• */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 13px 0;
    background: var(--bg2);
}

.ticker__track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: ticker 32s linear infinite;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker .sep {
    color: var(--orange);
}

/* â•â•â• SECCIÃ“N BASE â•â•â• */
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.label-line {
    width: 36px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

.section-label span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 52px;
}

/* â•â•â• SERVICIOS CON FOTO â•â•â• */
.section-services {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.serv-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.serv-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.serv-card__img {
    height: 200px;
    overflow: hidden;
}

.serv-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.serv-card:hover .serv-card__img img {
    transform: scale(1.05);
}

.serv-card__body {
    padding: 24px 24px 16px;
    flex: 1;
}

.serv-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--orange-dim);
    border: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 14px;
}

.serv-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.serv-card__body p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
}

.serv-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    transition: gap 0.2s;
}

.serv-card:hover .serv-card__link {
    gap: 14px;
}

/* â•â•â• GALERÃA â•â•â• */
.section-gallery {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.section-gallery .container {
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 8px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* â•â•â• NOSOTROS â•â•â• */
.section-why {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--bg2);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-left h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.why-left>p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 0.92rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.5;
}

.why-list li i {
    color: var(--orange);
    margin-top: 2px;
    flex-shrink: 0;
}

.feat-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.feat-box:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.feat-box__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--orange-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--orange);
    flex-shrink: 0;
}

.feat-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feat-box p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
}

/* â•â•â• CTA â•â•â• */
.section-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 24px;
}

.cta-sub {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 48px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
}

.cta-info i {
    color: var(--orange);
}

/* â•â•â• FOOTER â•â•â• */
.footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer p {
    font-size: 0.75rem;
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray);
    transition: all 0.2s;
}

.footer-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

/* â•â•â• MODAL PRESUPUESTO â•â•â• */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-backdrop.open {
    display: flex;
}

.modal-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--white);
}

.modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--orange-dim);
    border: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange);
    margin-bottom: 18px;
}

.modal-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-sub {
    font-size: 0.84rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group select option {
    background: var(--bg3);
}

.form-group input.error,
.form-group input:invalid:not(:placeholder-shown) {
    border-color: #f87171;
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 4px;
}

.modal-submit:hover {
    background: #20b558;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.modal-legal {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin-top: 12px;
}

/* â•â•â• MAPA â•â•â• */
.section-map {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.map-sub {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.map-sub strong {
    color: var(--white);
}

.map-wrapper {
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(1) hue-rotate(180deg) brightness(0.85) saturate(0.6);
}

/* â•â•â• PROCESO â•â•â• */
.section-process {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--bg2);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    padding: 32px 24px 28px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: border-color 0.3s;
}

.process-step:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}

.process-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.process-step p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.7;
}

.process-step strong {
    color: var(--white);
}

/* â•â•â• ESPECIALIDADES TÃ‰CNICAS â•â•â• */
.section-specs {
    padding-bottom: 100px;
    border-top: 1px solid var(--border);
}

.section-specs .container {
    padding-top: 100px;
    padding-bottom: 60px;
}

.spec-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto 4px;
    border-top: 1px solid var(--border);
}

.spec-block--reverse {
    direction: rtl;
}

.spec-block--reverse>* {
    direction: ltr;
}

.spec-media {
    height: 520px;
    overflow: hidden;
}

.spec-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spec-block:hover .spec-media img {
    transform: scale(1.04);
}

.spec-content {
    padding: 60px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    background: var(--bg2);
}

.spec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
}

.spec-content h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.spec-content p {
    font-size: 0.86rem;
    color: var(--gray);
    line-height: 1.75;
}

.spec-content p strong {
    color: var(--white);
}

.spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray);
}

.spec-list i {
    color: var(--orange);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* â•â•â• CATÃLOGO COMPLETO â•â•â• */
.section-catalog {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    transition: all 0.25s;
}

.cat-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--white);
    background: var(--bg3);
}

.cat-item i {
    color: var(--orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.catalog-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}

.catalog-note a {
    color: var(--orange);
    font-weight: 600;
}

.catalog-note a:hover {
    text-decoration: underline;
}

/* â•â•â• EQUIPO FRAN & MARGA â•â•â• */
.section-team {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--bg2);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}

.team-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.team-card__img {
    height: 260px;
    overflow: hidden;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}

.team-card:hover .team-card__img img {
    transform: scale(1.05);
}

.team-card__body {
    padding: 28px 28px 24px;
    flex: 1;
}

.team-card__body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.team-card__body p {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.team-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--orange);
    text-transform: uppercase;
}

.team-story {
    grid-column: 1 / -1;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 56px;
}

.story-icon {
    font-size: 2.5rem;
    color: rgba(249, 115, 22, 0.2);
    margin-bottom: 20px;
}

.team-story p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 760px;
}

.team-story p strong {
    color: var(--white);
}

.story-data {
    display: flex;
    gap: 48px;
}

.story-stat {
    display: flex;
    flex-direction: column;
}

.story-stat strong {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.story-stat span {
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* â•â•â• TABLET (â‰¤ 960px) â•â•â• */
@media (max-width: 960px) {

    .nav__links,
    .nav__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        padding: 16px 24px;
    }

    .nav.scrolled {
        padding: 12px 24px;
    }

    .hero {
        padding: 0 28px 80px;
        align-items: flex-end;
    }

    .hero__scroll {
        right: 28px;
    }

    .hero__title {
        letter-spacing: -2px;
    }

    .container {
        padding: 0 24px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .section-services {
        padding: 72px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        padding: 0 16px;
    }

    .gallery-item--tall {
        grid-row: span 1;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .spec-block {
        grid-template-columns: 1fr;
        border-top: 1px solid var(--border);
    }

    .spec-block--reverse {
        direction: ltr;
    }

    .spec-media {
        height: 260px;
    }

    .spec-content {
        padding: 32px 28px;
    }

    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-story {
        padding: 32px 28px;
    }

    .map-wrapper {
        height: 340px;
    }
}

/* â•â•â• MÃ“VIL (â‰¤ 640px) â•â•â• */
@media (max-width: 640px) {

    /* Hero */
    .hero {
        padding: 0 20px 72px;
        min-height: 100svh;
    }

    .hero__title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .hero__sub {
        font-size: 0.88rem;
    }

    .hero__actions {
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero__actions .btn-main,
    .hero__actions .btn-wa {
        width: 100%;
        justify-content: center;
    }

    .btn-main span {
        flex: 1;
        text-align: center;
    }

    .hero__stats {
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        margin-top: 0;
    }

    .stat-sep {
        display: none;
    }

    .hero__badge {
        font-size: 0.65rem;
    }

    .hero__scroll {
        display: none;
    }

    /* Servicios */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-services {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 32px;
    }

    /* GalerÃ­a */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 6px;
        padding: 0 12px;
    }

    /* Proceso */
    .section-process {
        padding: 60px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-num {
        font-size: 3rem;
    }

    /* Especialidades */
    .section-specs .container {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .spec-media {
        height: 220px;
    }

    .spec-content {
        padding: 24px 20px;
        gap: 14px;
    }

    .spec-content h3 {
        font-size: 1.3rem;
    }

    /* CatÃ¡logo */
    .section-catalog {
        padding: 60px 0;
    }

    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .cat-item {
        font-size: 0.75rem;
        padding: 10px;
        gap: 8px;
    }

    /* Equipo */
    .section-team {
        padding: 60px 0;
    }

    .team-story {
        padding: 24px 20px;
    }

    .team-story p {
        font-size: 0.88rem;
    }

    .story-data {
        gap: 20px;
        flex-wrap: wrap;
    }

    .story-stat strong {
        font-size: 2rem;
    }

    /* Nosotros */
    .section-why {
        padding: 60px 0;
    }

    .feat-box {
        padding: 16px;
    }

    /* CTA */
    .section-cta {
        padding: 80px 0;
    }

    .cta-title {
        letter-spacing: -1.5px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cta-actions .btn-main,
    .cta-actions .btn-wa,
    .cta-actions .btn-email {
        justify-content: center;
        width: 100%;
    }

    .cta-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    /* Mapa */
    .section-map {
        padding: 60px 0 0;
    }

    .map-wrapper {
        height: 280px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-social {
        justify-content: center;
    }

    /* Modal */
    .modal-box {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .modal-box h3 {
        font-size: 1.2rem;
    }

    /* WhatsApp flotante */
    .wa-float {
        bottom: 20px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* â•â•â• MÃ“VIL PEQUEÃ‘O (â‰¤ 390px) â•â•â• */
@media (max-width: 390px) {
    .hero__title {
        font-size: 2.6rem;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .cat-item {
        font-size: 0.78rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .cta-title {
        font-size: 2.8rem;
    }
}
