* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

:root {
    --blue: #2AABDC;
    --blue2: #1e8fb8;
    --dark: #1c1c1e;
    --gray: #f5f6f7;
    --gray2: #e8eaed;
    --text: #000000;
    --muted: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff
}

h1,
h2,
h3 {
    font-family: 'Barlow Condensed', sans-serif
}

nav {
    background: #ffffffbc;
    border-bottom: 1px solid var(--gray2);
    position: sticky;
    top: 0;
    z-index: 100
}

.nav-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: transparent;
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    gap: 28px
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color .15s
}

.nav-links a:hover {
    color: var(--blue)
}

.nav-btn {
    background: var(--blue);
    color: #fff;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s
}

.nav-btn:hover {
    background: var(--blue2)
}

.hero {
    background: var(--dark);
    padding: 80px 24px 0;
    overflow: hidden;
    position: relative
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(42, 171, 220, .12) 0%, transparent 65%);
    pointer-events: none
}

.hero-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-end
}

.hero-left {
    padding-bottom: 72px;
    position: relative;
    z-index: 1
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 171, 220, .15);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px
}

.hero-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue)
}

.hero h1 {
    font-size: clamp(52px, 5.5vw, 78px);
    font-weight: 800;
    line-height: .95;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px
}

.hero h1 em {
    color: var(--blue);
    font-style: normal
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    max-width: 420px;
    margin-bottom: 36px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .15s
}

.btn-blue:hover {
    background: var(--blue2)
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, .8);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, .2);
    transition: all .15s
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff
}

.hero-right {
    position: relative;
    z-index: 1
}

.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block
}

.cred {
    background: #f9fafb;
    border-bottom: 1px solid var(--gray2);
    padding: 20px 24px
}

.cred-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.cred-item {
    padding: 8px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    border-right: 1px solid var(--gray2)
}

.cred-item:last-child {
    border-right: none
}

.cred-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0
}

.section {
    padding: 80px 24px
}

.section.alt {
    background: #f9fafb
}

.wrap {
    max-width: 1120px;
    margin: 0 auto
}

.sec-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px
}

.sec-title {
    font-size: clamp(34px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -.5px
}

.sec-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 48px
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray2)
}

.ben-card {
    background: #fff;
    padding: 32px 28px;
    transition: background .15s
}

.ben-card:hover {
    background: #f0f9fe
}

.ben-icon {
    width: 44px;
    height: 44px;
    background: #e8f6fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.ben-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round
}

.ben-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.ben-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

.catalog-gallery {
    grid-template-columns: repeat(3, 1fr);
}

.ex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.ex-card {
    border: 1px solid var(--gray2);
    border-radius: 12px;
    padding: 28px 24px;
    background: #fff;
    transition: all .2s
}

.ex-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 24px rgba(42, 171, 220, .12)
}

.ex-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block
}

.ex-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.ex-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

.ex-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(42, 171, 220, .3);
    padding: 4px 10px;
    border-radius: 4px
}

.ex-card.special {
    background: #f0f9fe;
    border-color: rgba(42, 171, 220, .3)
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.steps::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--gray2);
    z-index: 0
}

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--blue)
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px
}

.step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

.proceso-note {
    margin-top: 40px;
    padding: 20px 24px;
    background: #fff;
    border-left: 3px solid var(--blue);
    border-radius: 0 8px 8px 0;
    border: 1px solid var(--gray2)
}

.proceso-note p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

.proceso-note strong {
    color: var(--dark)
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray2);
    border: 1px solid var(--gray2);
    border-radius: 12px;
    overflow: hidden
}

.logo-box {
    background: #fff;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s
}

.logo-box:hover {
    background: #f9fafb
}

.pq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.pq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px
}

.pq-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--gray2);
    border-radius: 10px;
    transition: border-color .15s
}

.pq-item:hover {
    border-color: var(--blue)
}

.pq-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f6fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.pq-check svg {
    width: 12px;
    height: 12px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pq-item strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 3px
}

.pq-item span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
}

.pq-right {
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden
}

.pq-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block
}

.pq-stats {
    padding: 28px
}

.pq-stat-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px
}

.pq-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.pq-stat {
    background: rgba(255, 255, 255, .05);
    padding: 16px;
    border-radius: 8px;
    text-align: center
}

.pq-stat .val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.pq-stat .lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px
}

.planta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.planta-main {
    border-radius: 12px;
    overflow: hidden;
    grid-row: 1/3
}

.planta-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.planta-small {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9
}

.planta-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cta-section {
    background: var(--blue);
    padding: 80px 24px
}

.cta-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.cta-left h2 {
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.cta-left p {
    font-size: 17px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6
}

.cta-form {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cta-form h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.field input,
.field select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray2);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    outline: none;
    transition: border-color .15s;
    background: #fff
}

.field input:focus,
.field select:focus {
    border-color: var(--blue)
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s
}

.submit-btn:hover {
    background: var(--blue2)
}

.form-or {
    text-align: center;
    font-size: 13px;
    color: var(--muted)
}

.form-wa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none
}

footer {
    background: var(--dark);
    padding: 56px 24px 28px
}

.ft-wrap {
    max-width: 1120px;
    margin: 0 auto
}

.ft-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px
}

.ft-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 260px
}

.ft-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 14px
}

.ft-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .15s
}

.ft-col a:hover {
    color: #fff
}

.ft-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 6px
}

.ft-contact strong {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    display: block;
    margin-bottom: 2px
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ft-bottom span {
    font-size: 12px;
    color: rgba(255, 255, 255, .2)
}

.ft-bottom a {
    font-size: 12px;
    color: rgba(255, 255, 255, .2);
    text-decoration: none
}

/* =========================================
   DISEÑO RESPONSIVO (MÓVILES Y TABLETS)
   ========================================= */

/* Para Tablets y pantallas medianas (menos de 992px) */
@media (max-width: 992px) {
    .ben-grid,
    .steps,
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ex-grid,
    .catalog-gallery {
        grid-template-columns: repeat(2, 1fr); /* Ajustado a 2 para que respire en iPad */
    }

    .hero h1 {
        font-size: 52px;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* Para Celulares (menos de 768px) */
@media (max-width: 768px) {

    /* Convertir TODO a 1 sola columna amplia */
    .hero-wrap,
    .planta-grid,
    .cta-inner,
    .form-row,
    .ft-top,
    .ben-grid,
    .ex-grid,
    .steps,
    .logos-grid,
    .catalog-gallery,
    .pq-grid {
        grid-template-columns: 1fr;
    }

    /* Ajustes del Hero (Cabecera) */
    .nav-wrap {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero {
        padding: 40px 16px 0;
    }

    .hero-left {
        text-align: center;
        padding-bottom: 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-p {
        margin: 0 auto 36px;
    }

    .hero-img {
        max-height: 400px;
    }

    /* Ajustes de secciones (espaciados) */
    .section {
        padding: 60px 20px;
    }

    .sec-title {
        font-size: 32px;
    }

    .steps::after {
        display: none;
    }

    .step {
        margin-bottom: 32px;
    }

    /* Reordenar Planta Soltro (Texto arriba, foto abajo) */
    .pq-grid div:first-child {
        order: 2;
    }

    .pq-right {
        order: 1;
        margin-bottom: 24px;
    }

    .planta-main {
        grid-row: auto;
    }

    /* Ajustes del Formulario y Footer */
    .cta-inner {
        gap: 32px;
    }

    .cta-left {
        text-align: center;
    }

    .ft-top {
        text-align: center;
        gap: 32px;
    }

    .ft-brand p {
        margin: 14px auto;
    }
}