/* Hero */

#hero {
    padding: 72px 0 0;
    background: var(--white);
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* Texto */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 780px;
}

.hero-text h1 {
    margin: 0;
}

.hero-text .lead {
    max-width: 560px;
    text-align: center;
}

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

/* Cromo animado "en manos expertas." */
.cromo-hero {
    background: linear-gradient(105deg,
            #C46700 0%,
            #EF7D00 15%,
            #FFD080 28%,
            #EF7D00 40%,
            #8B4500 55%,
            #EF7D00 68%,
            #FFE8A0 80%,
            #EF7D00 90%,
            #C46700 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 10px rgba(239, 125, 0, .40));
    animation: barrido-cromo-hero 15s linear infinite;
}

@keyframes barrido-cromo-hero {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 480px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 28px 0 0;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 500;
    white-space: nowrap;
}

.hero-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--border);
    margin: 0 28px 0 0;
    flex-shrink: 0;
}

/* Marco macbook */
.hero-macbook {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 0 20px;
}

.macbook-frame {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, .15));
}

/* Tapa superior con cámara */
.macbook-top {
    width: 96%;
    height: 20px;
    background: #2a2a2a;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.macbook-camera {
    width: 7px;
    height: 7px;
    background: #1a1a1a;
    border-radius: 50%;
    border: 1.5px solid #3a3a3a;
}

/* Pantalla */
.macbook-screen {
    width: 96%;
    background: #1c1c1e;
    border: 2px solid #2a2a2a;
    border-top: none;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    position: relative;
    z-index: 2;

}

/* Barra de browser dentro de la pantalla */
.macbook-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #242424;
    border-bottom: 1px solid #333;
}

.macbook-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.macbook-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.macbook-dots span:nth-child(1) {
    background: #FF5F57;
}

.macbook-dots span:nth-child(2) {
    background: #FEBC2E;
}

.macbook-dots span:nth-child(3) {
    background: #28C840;
}

.macbook-url {
    flex: 1;
    background: #2e2e2e;
    border-radius: 5px;
    padding: 4px 12px;
    font-size: 11px;
    color: #888;
    font-family: var(--font-body);
    text-align: center;
    letter-spacing: .01em;
}

.macbook-browser-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.macbook-browser-actions span {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: #333;
}

/* Imagen dentro de la pantalla */
.macbook-content {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    display: block;
}

.macbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Base / soporte */
/* .macbook-base {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.macbook-hinge {
    width: 96%;
    height: 6px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 0 0 3px 3px;
}

.macbook-stand {
    width: 22%;
    height: 10px;
    background: #2e2e2e;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.macbook-foot {
    width: 42%;
    height: 6px;
    background: #2a2a2a;
    border-radius: 0 0 4px 4px;
} */

/* Logos Marquee */

#logos {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 36px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--ink-4);
}

/* Servicios Bento */

#servicios {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 52px;
}

.section-header h2 {
    margin: 8px 0 16px;
}

.section-header.text-center .lead {
    margin: 0 auto;
}

.bento-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.bento-row:last-child {
    margin-bottom: 0;
}

.bento-row-reverse {
    grid-template-columns: 1fr 1.6fr;
}

.bento-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px;
    overflow: hidden;
    position: relative;
    transition: box-shadow var(--t-base), border-color var(--t-base);
}

.bento-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-2);
}

.bento-card.bento-dark {
    background: var(--ink);
    border-color: transparent;
}

.bento-card.bento-dark h3 {
    color: var(--white);
}

.bc-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

.bento-card.bento-dark .bc-icon {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .10);
    color: var(--orange);
}

.bc-icon svg {
    width: 20px;
    height: 20px;
}

.bc-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.bento-card.bento-dark .bc-label {
    color: var(--orange-light);
}

.bento-card .bc-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.bento-card h3 {
    margin-bottom: 10px;
}

.bc-desc {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.65;
}

.bento-card.bento-dark .bc-desc {
    color: rgba(255, 255, 255, .55);
}

.bc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
}

.bc-tag {
    background: var(--orange-muted);
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--r-2xl);
}

.bento-card.bento-dark .bc-tag {
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .70);
}

.bc-img {
    width: 100%;
    border-radius: var(--r-md);
    margin-top: 24px;
    object-fit: cover;
    height: 180px;
    display: block;
}

.bc-img-tall {
    height: 220px;
}

/* Proceso */

#proceso {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proceso-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.proceso-left h2 {
    margin: 10px 0 40px;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .04em;
    flex-shrink: 0;
    padding-top: 3px;
    min-width: 28px;
}

.step-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-body p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.65;
}

/* Imagen proceso */
.proceso-img-wrap {
    position: relative;
}

.proceso-img {
    width: 100%;
    border-radius: var(--r-xl);
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
    box-shadow: var(--shadow-xl);
}

.proceso-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 24px;
    box-shadow: var(--shadow-md);
    min-width: 180px;
}

.pb-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 4px;
}

.pb-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.02em;
}

.pb-num span {
    color: var(--orange);
}

.pb-sub {
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 3px;
}

/* Testimonio */
#testimonio {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

/* Label superior */
.testimonio-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 8px;
    display: block;
}

/* Línea naranja bajo el label */
.testimonio-linea {
    display: block;
    width: 36px;
    height: 2px;
    background: var(--orange);
    margin: 0 auto 40px;
}

/* Cita — centrada */
.quote-text {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    letter-spacing: -.02em;
    text-align: center;
    /* ← cambia left por center */
    quotes: none;
    margin-bottom: 0;
}

/* Cromo en "la mejor decisión." */
.quote-cromo {
    background: linear-gradient(105deg,
            #C46700 0%,
            #EF7D00 15%,
            #FFD080 28%,
            #EF7D00 40%,
            #8B4500 55%,
            #EF7D00 68%,
            #FFE8A0 80%,
            #EF7D00 90%,
            #C46700 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 2px 8px rgba(239, 125, 0, .30));
    animation: barrido-cromo-hero 15s linear infinite;
}

/* Separador línea + diamante */
.testimonio-sep {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 10px 0;
}

.testimonio-sep::before,
.testimonio-sep::after {
    content: '';
    flex: 2;
    height: 2px;
    background: var(--border);
}

.testimonio-sep span {
    font-size: 29px;
    color: var(--orange);
    padding: 0 10px;
    line-height: 1;
}

/* Párrafo secundario */
.testimonio-inner .lead {
    font-size: 15px;
    color: var(--ink-3);
    line-height: 1.75;
    text-align: center;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}




/* Por que elegirnos */

#porque {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

#porque .section-header {
    max-width: 600px;
    margin: 0 auto 52px;
}

#porque .section-header h2 {
    margin: 8px 0 16px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.feat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-2);
    transform: translateY(-3px);
}

.feat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--orange-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--orange);
}

.feat-icon svg {
    width: 20px;
    height: 20px;
}

.feat-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.65;
}

/* Industrias Tab */

#industrias {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

#industrias .section-header {
    max-width: 600px;
    margin: 0 auto 40px;
}

#industrias .section-header h2 {
    margin: 8px 0 16px;
}

.tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.tabs {
    display: inline-flex;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 4px;
    gap: 4px;
}

.tab {
    padding: 9px 22px;
    border-radius: var(--r-2xl);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    transition: all var(--t-base);
    border: none;
    background: none;
    font-family: var(--font-body);
    white-space: nowrap;
}

.tab:hover {
    color: var(--ink);
}

.tab.active {
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.industry-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.industry-panel.active {
    display: grid;
}

.industry-text h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    margin-bottom: 16px;
}

.industry-text p {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.75;
    margin-bottom: 24px;
}

.industry-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-2);
}

.industry-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange-muted);
    border: 1.5px solid var(--orange);
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23EF7D00' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px;
    background-position: center;
    background-repeat: no-repeat;
}

.industry-img {
    width: 100%;
    border-radius: var(--r-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: var(--shadow-lg);
}

/* Cta oscuro */

#cta-dark {
    padding: 100px 0;
    background: var(--ink);
    overflow: hidden;
    position: relative;
}

#cta-dark::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 125, 0, .08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-dark-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-dark-text .tag-orange {
    background: rgba(239, 125, 0, .15);
    border-color: rgba(239, 125, 0, .25);
    color: var(--orange-light);
}

.cta-dark-text h2 {
    color: var(--white);
    margin: 20px 0 16px;
}

.cta-dark-text .lead {
    color: rgba(255, 255, 255, .55);
}

.cta-dark-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 26px;
    border-radius: var(--r-2xl);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    border: 1.5px solid rgba(255, 255, 255, .20);
    text-decoration: none;
    transition: all var(--t-base);
}

.btn-wa:hover {
    border-color: #25D366;
    color: #25D366;
    background: rgba(37, 211, 102, .08);
}

.btn-wa svg {
    width: 16px;
    height: 16px;
}

/* Imagen CTA */
.cta-dark-img {
    position: relative;
}

.cta-img-frame {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--r-xl);
    padding: 10px;
    overflow: hidden;
}

.cta-img-frame img {
    width: 100%;
    border-radius: var(--r-lg);
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Contacto */

#contacto {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.contacto-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contacto-left h2 {
    margin: 10px 0 16px;
}

.contacto-left .lead {
    margin-bottom: 36px;
}

/* Tarjetas de contacto */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.contact-card:hover {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-muted);
}

.contact-card-icon {
    width: 38px;
    height: 38px;
    background: var(--orange-muted);
    border: 1px solid rgba(239, 125, 0, .20);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.contact-card-icon svg {
    width: 16px;
    height: 16px;
}

.contact-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 2px;
}

.contact-card-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

.contact-card-val a {
    color: var(--ink);
    text-decoration: none;
    transition: color var(--t-fast);
}

.contact-card-val a:hover {
    color: var(--orange);
}

.contact-hours {
    display: block;
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 400;
    margin-top: 2px;
}

/* Formulario */
.contact-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-2);
    border-radius: 0;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color var(--t-fast);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--orange);
    box-shadow: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-4);
    font-size: 14px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23EF7D00' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 16px;
    padding-right: 28px;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}




/* Propuesta de Valor */
#propuesta {
    padding: 100px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

#propuesta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 125, 0, .08) 0%, transparent 70%);
    pointer-events: none;
}

#propuesta .section-header {
    max-width: 640px;
    margin: 0 auto 56px;
}

#propuesta .section-header h2 {
    color: var(--white);
}

#propuesta .section-label {
    color: var(--orange-light);
}

#propuesta .section-label::before {
    background: var(--orange-light);
}

.propuesta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.propuesta-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: all var(--t-base);
}

.propuesta-card:hover {
    background: rgba(239, 125, 0, .08);
    border-color: rgba(239, 125, 0, .20);
    transform: translateY(-4px);
}

.propuesta-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: rgba(239, 125, 0, .20);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.propuesta-card h3 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 12px;
}

.propuesta-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .propuesta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .propuesta-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners */
#partners {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

#partners .section-header {
    max-width: 600px;
    margin: 0 auto 52px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--t-base);
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.partner-logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.partner-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.partner-desc {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.7;
}

.partner-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 12px;
    filter: invert(1);
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */

@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }

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

@media (max-width: 900px) {
    #hero {
        padding: 48px 0 0;
    }

    .hero-inner {
        gap: 36px;
    }

    .macbook-frame {
        max-width: 100%;
    }

    .bento-row,
    .bento-row-reverse {
        grid-template-columns: 1fr;
    }

    .proceso-inner,
    .contacto-inner,
    .cta-dark-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .industry-panel.active {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .proceso-badge {
        bottom: 12px;
        left: 12px;
    }

    .tabs {
        flex-wrap: wrap;
        border-radius: var(--r-xl);
        justify-content: center;
    }
}

@media (max-width: 600px) {

    #servicios,
    #proceso,
    #testimonio,
    #porque,
    #industrias,
    #cta-dark,
    #contacto {
        padding: 72px 0;
    }

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

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

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

    .hero-stat-sep {
        display: none;
    }

    .cta-dark-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-wa {
        justify-content: center;
    }

    .contact-form {
        padding: 24px 20px;
    }
}

/* ── Reveal letra por letra  ── */
.titulo-reveal {
    display: inline-block;
}

.titulo-reveal .letra {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .4s ease, transform .4s ease;
}

.titulo-reveal.animado .letra {
    opacity: 1;
    transform: translateY(0);
}

/* Espacios entre palabras */
.titulo-reveal .espacio {
    display: inline-block;
    width: .28em;
}

/* Fix alineación al convertir letras en spans */
.titulo-reveal {
    display: block;
    white-space: normal;
}

.titulo-reveal .letra,
.titulo-reveal .espacio {
    white-space: pre;
}

/* Alinear tarjetas partners */
.partners-grid {
    align-items: stretch;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
}

.bc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bc-header .bc-icon {
    margin-bottom: 0;
}

.bc-header .bc-label {
    margin-bottom: 0;
}

/* Select personalizado */
.select-custom {
    position: relative;
    width: 100%;
}

.select-custom select {
    display: none;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1.5px solid var(--border-2);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink-3);
    transition: border-color var(--t-fast);
    user-select: none;
}

.select-trigger.selected {
    color: var(--ink);
}

.select-trigger:hover,
.select-custom.open .select-trigger {
    border-bottom-color: var(--orange);
}

.select-arrow {
    width: 16px;
    height: 16px;
    color: var(--orange);
    transition: transform .2s ease;
    flex-shrink: 0;
}

.select-custom.open .select-arrow {
    transform: rotate(180deg);
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.select-custom.open .select-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.select-option {
    padding: 12px 18px;
    font-size: 14px;
    color: var(--ink-2);
    cursor: pointer;
    transition: background .15s, color .15s;
}

.select-option:hover {
    background: var(--orange-muted);
    color: var(--orange);
}

.select-option.active {
    color: var(--orange);
    font-weight: 600;
    background: var(--orange-muted);
}

.select-option.placeholder {
    color: var(--ink-4);
}