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

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main {
    min-height: calc(100vh - 120px);
    padding-top: 0;
}

.section-padded {
    padding: 3rem 1.5rem;
    max-width: 95%;
    margin: 0 auto;
}



.site-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    margin: 5px auto;
}

.hamburger[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO
========================================== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.carousel-inner,
.carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.carousel-item img,
.carousel-item video,
.hero-video {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(80%);
}

.carousel-item.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 52%;
    left: 13%;
    transform: translateY(-50%);
    max-width: 760px;
    color: #F5F5F0;
    z-index: 5;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(245, 245, 240, 0.35);
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #C9A15B;
    background: rgba(27, 48, 34, 0.35);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.08;
    margin-bottom: 2rem;
    color: #F5F5F0;
}

.hero-content h1 span {
    color: #F5F5F0;
}

#hero-h2 {
    max-width: 680px;
    max-width: 640px;
    line-height: 1.35;
    font-weight: 600;
    color: rgba(245, 245, 240, 0.92);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-actions .btn {
    font-weight: 800;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 0.9rem 1.4rem;
    border-radius: 3px;
    text-decoration: none;
}

.hero-btn-primary {
    background: #B84A32;
    color: #F5F5F0;
    border: 1px solid #B84A32;
}

.hero-btn-primary:hover {
    background: #8E3B29;
    border-color: #8E3B29;
}

.hero-btn-secondary {
    background: rgba(245, 245, 240, 0.08);
    color: #F5F5F0;
    border: 1px solid rgba(245,245,240,0.75);
}

.hero-btn-secondary:hover {
    background: rgba(245, 245, 240, 0.16);
}

.hero-stats {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    text-align: right;
    color: #F5F5F0;
}

.hero-stat strong {
    display: block;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.9;
    font-weight: 800;
    color: #F5F5F0;
}

.hero-stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.76);
}

/* ========================================== 
   HERO RESPONSIVE
========================================== */

/* TABLET + MOBILE BASE */
@media (max-width: 1024px) {
    .hero-carousel {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        background: var(--primary-color);
        overflow: hidden;
    }

    .carousel-inner {
        position: relative !important;
        width: 100%;
        margin-top: 0 !important;
        padding-top: 0 !important;
        overflow: hidden;
    }

    .carousel-item,
    .carousel-item.active {
        height: 100%;
    }

    .carousel-item img,
    .carousel-item video,
    .hero-video {
        width: 100%;
        height: 100%;
        min-height: 0 !important;
        object-fit: cover;
        display: block;
    }

    .hero-content {
        position: static !important;
        transform: none !important;
        max-width: none !important;
        background: var(--primary-color);
    }

    .hero-stats {
        position: static !important;
        background: var(--primary-color);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .carousel-inner {
        height: 240px !important;
        min-height: 240px !important;
    }

    .carousel-item img,
    .carousel-item video,
    .hero-video {
        object-position: center;
    }

    .hero-content {
        padding: 2rem 6% 1.25rem;
    }

    .hero-badge {
        font-size: .68rem;
        letter-spacing: .10em;
        padding: .4rem .65rem;
        margin-bottom: 1.25rem;
    }

    .hero-content h1 {
        font-size: clamp(2.35rem, 10vw, 3rem);
        line-height: 1.05;
        margin-bottom: 1.25rem;
    }

    #hero-h2 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: .8rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        padding: 1rem 6% 1.15rem;
        gap: 0.45rem;
        border-top: 1px solid rgba(245, 245, 240, 0.14);
        text-align: center;
    }

    .hero-stat {
        align-items: center;
        justify-content: flex-start;
        text-align: center;
    }

    .hero-stat strong {
        font-size: 1.45rem;
        line-height: 1;
        margin-bottom: 0.25rem;
    }

    .hero-stat span {
        font-size: 0;
        line-height: 1;
    }

    .hero-stat:nth-child(1) span::after {
        content: "Proceso integral";
    }

    .hero-stat:nth-child(2) span::after {
        content: "Más rápido";
    }

    .hero-stat:nth-child(3) span::after {
        content: "Único equipo";
    }

    .hero-stat span::after {
        display: block;
        font-size: 0.62rem;
        line-height: 1.1;
        letter-spacing: 0.02em;
    }
}

/* MOBILE CHICO */
@media (max-width: 480px) {
    .carousel-inner {
        height: 220px !important;
        min-height: 220px !important;
    }

    .hero-content {
        padding: 1.75rem 6% 1.15rem;
    }

    .hero-content h1 {
        font-size: 2.45rem;
    }

    #hero-h2 {
        font-size: 0.95rem;
    }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
    nav,
    nav.navbar {
        background-color: var(--primary-color) !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .carousel-inner {
        height: 420px !important;
        min-height: 420px !important;
    }

    .carousel-item img,
    .carousel-item video,
    .hero-video {
        object-position: center top;
    }

    .hero-content {
        padding: 3rem 7% 2rem;
    }

    .hero-content h1 {
        font-size: clamp(3.4rem, 6vw, 4.6rem);
        line-height: 1.05;
    }

    #hero-h2 {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .hero-actions .btn {
        width: auto;
        min-width: 150px;
    }

    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        padding: 1.25rem 7% 1.5rem;
        border-top: 1px solid rgba(245,245,240,0.14);
        gap: 1rem;
        text-align: center;
    }

    .hero-stat {
        align-items: center;
        text-align: center;
    }

    .hero-stat strong {
        font-size: 2.1rem;
        line-height: 1;
    }

    .hero-stat span {
        font-size: 0.72rem;
        max-width: 120px;
        margin: 0 auto;
    }
}

/* ==========================================
   CONTACTO HDS
========================================== */

.hds-contact-section {
    background: linear-gradient(
        135deg,
        #0F2418 0%,
        #1B3022 100%
    );
    padding: 90px 8%;
}

.hds-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 80px;
    align-items: start;
}

/* Columna izquierda */

.hds-contact-copy .section-eyebrow {
    color: #C9A15B;
    margin-bottom: 18px;
}

.hds-contact-copy h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    line-height: 1.05;
    font-weight: 800;
    color: #F5F5F0;
    margin-bottom: 32px;
}

.hds-contact-copy p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(245,245,240,.78);
    max-width: 620px;
}

/* Beneficios */

.hds-contact-benefits {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hds-contact-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hds-contact-benefit span {
    color: #C9A15B;
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 32px;
}

.hds-contact-benefit p {
    margin: 0;
    font-size: 1rem;
}

/* Datos de contacto */

.hds-contact-direct {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hds-contact-direct strong {
    display: block;
    color: #F5F5F0;
    margin-bottom: 6px;
}

.hds-contact-direct a {
    color: rgba(245,245,240,.76);
    text-decoration: none;
    transition: color .25s ease;
}

.hds-contact-direct a:hover {
    color: #C9A15B;
}

/* Card formulario */

.hds-contact-form-card {
    background: #F5F5F0;
    padding: 34px;
    border-radius: 1px;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.hds-contact-form-card h3 {
    color: #1B3022;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hds-contact-form-card > p {
    color: #6B6B6B;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Formulario */

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

.hds-contact-form .form-group {
    margin-bottom: 18px;
}

.hds-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #1B3022;
}

.hds-contact-form input,
.hds-contact-form select,
.hds-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(27,48,34,.12);
    background: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: border-color .25s ease;
}

.hds-contact-form input:focus,
.hds-contact-form select:focus,
.hds-contact-form textarea:focus {
    outline: none;
    border-color: #C9A15B;
}

.hds-contact-form small {
    display: block;
    margin-top: 10px;
    margin-bottom: 24px;
    color: #7A7A7A;
}

/* CTA */

.hds-contact-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 18px;
    background: #8E3B29;
    color: #F5F5F0;
    font-size: 1rem;
    font-weight: 700;
    transition: all .3s ease;
}

.hds-contact-submit:hover {
    background: #743020;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE CONTACTO
========================================== */

@media (max-width: 1024px) {

    .hds-contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hds-contact-copy {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .hds-contact-section {
        padding: 90px 6%;
    }

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

    .hds-contact-form-card {
        padding: 28px;
    }

    .hds-contact-copy h2 {
        font-size: 2.6rem;
    }
}

/* Responsive: */

@media (max-width: 1024px) {

    .hero-carousel {
        height: auto;
        min-height: auto;
        margin-top: 0;
        overflow: visible;
        background: #1B3022;
    }

    .carousel-inner {
        position: relative;
        height: 460px;
    }

    .carousel-item {
        position: relative;
        height: 100%;
        opacity: 1;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 2.4rem 2rem 2.8rem;
        background: #1B3022;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 8vw, 4.4rem);
        line-height: 1.08;
        margin-bottom: 1.4rem;
    }

    #hero-h2 {
        font-size: 1.1rem;
        line-height: 1.45;
        margin-bottom: 1.6rem;
    }

    .hero-actions {
        flex-direction: row;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .hero-actions a {
        width: auto;
        min-width: 180px;
        text-align: center;
    }

    .hero-stats {
        display: none;
    }
}
@media (max-width: 520px) {

    .carousel-inner {
        height: 320px;
    }

    .hero-content {
        padding: 2rem 1.4rem 2.4rem;
    }

    .hero-content h1 {
        font-size: 2.45rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
        min-width: unset;
    }
}

/* ==========================================
   POR QUÉ CONSTRUIR CON HDS
========================================== */

.hds-benefits {
    background: #F5F5F0;
    padding: 120px 8% 0;
}

.hds-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #8E3B29;
}

.hds-benefits-header {
    max-width: 760px;
    margin-bottom: 60px;
}

.hds-benefits-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: #1B3022;
    margin-bottom: 24px;
}

.hds-benefits-header p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(27,48,34,0.75);
}

.hds-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hds-problem-card {
    background: #ffffff;
    padding: 32px;
    min-height: 270px;
    border: 1px solid rgba(27,48,34,0.08);
    box-shadow: 0 10px 30px rgba(27,48,34,0.08);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hds-problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(27,48,34,0.11);
    border-color: rgba(201,161,91,0.32);
}

.hds-problem-card h3 {
    color: #1B3022;
    margin: 0 0 16px;
    transition: transform .3s ease;
}

.hds-problem-card h3::before {
    content: "";
    display: block;

    width: 220px;
    height: 3px;

    background: #C9A15B;
    margin-bottom: 18px;

    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;

    transition:
        opacity .25s ease,
        transform .35s ease;
}

.hds-problem-card:hover h3::before {
    opacity: 1;
    transform: scaleX(1);
}

.hds-problem-card:hover h3 {
    color: #1B3022;
    transform: translateY(-3px);
}

/* ==========================================
   OBRAS REALIZADAS HOME
========================================== */

.hds-works-section {
    background: #F5F5F0;
    padding: 120px 8%;
}

.hds-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hds-works-header {
    max-width: 760px;
    margin-bottom: 56px;
}

.hds-works-header h2 {
    color: #1B3022;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 18px 0 24px;
}

.hds-works-header p {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(27,48,34,0.72);
}

.hds-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.hds-work-card {
    background: #ffffff;
    border: 1px solid rgba(27,48,34,0.08);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27,48,34,0.06);
    display: flex;
    flex-direction: column;
}

.hds-work-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.hds-work-card-content {
    padding: 28px 32px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hds-work-card-content span,
.hds-work-cta span {
    display: block;
    color: #C9A15B;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hds-work-card-content h3,
.hds-work-cta h3 {
    color: #1B3022;
    font-size: 1.55rem;
    line-height: 1.15;
    margin: 0 0 14px;
}

.hds-work-card-content p {
    color: rgba(27,48,34,0.70);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.hds-work-card .hds-link-arrow {
    margin-top: auto;
    align-self: flex-start;
}

.hds-work-cta {
    background: #1B3022;
    color: #F5F5F0;
    padding: 44px 40px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.hds-work-cta h3 {
    color: #F5F5F0;
    font-size: 1.8rem;
}

.hds-work-cta p {
    color: rgba(245,245,240,0.80);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}

.hds-work-cta .hds-link-arrow {
    margin-top: auto;
    align-self: flex-start;
    color: #F5F5F0;
}

.hds-works-footer {
    margin-top: 36px;
}

.hds-works-footer .hds-link-arrow {
    color: #1B3022;
}

.hds-works-footer .hds-link-arrow:hover,
.hds-work-card .hds-link-arrow:hover {
    color: #8E3B29;
}

.hds-work-cta .hds-link-arrow:hover {
    color: #C9A15B;
}

.work-note,
.works-note {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #6E756F;
    cursor: default;
}

.work-note {
    margin-top: 24px;
}

.works-note {
    margin-top: 32px;
}

/* Responsive */

@media (max-width: 1024px) {
    .hds-works-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hds-work-cta {
        grid-column: 1 / -1;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .hds-works-section {
        padding: 90px 6%;
    }

    .hds-works-grid {
        grid-template-columns: 1fr;
    }

    .hds-work-card img {
        height: 240px;
    }

    .hds-work-cta {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hds-works-header {
        margin-bottom: 40px;
    }

    .hds-work-card-content,
    .hds-work-cta {
        padding: 28px 24px;
    }

    .hds-work-card img {
        height: 220px;
    }
}
/* Entrada por scroll + hover obras */

.hds-work-card,
.hds-work-cta {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.hds-work-card.is-visible,
.hds-work-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hds-work-card img {
    transition: transform .55s ease;
}

/* Secuencia */

.hds-work-card:nth-child(1) {
    transition-delay: .1s;
}

.hds-work-card:nth-child(2) {
    transition-delay: .2s;
}

.hds-work-cta {
    transition-delay: .3s;
}

/* Hover desktop */

.hds-work-card.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(27,48,34,0.10);
    border-color: rgba(27,48,34,0.14);
}

.hds-work-card.is-visible:hover img {
    transform: scale(1.03);
}

.hds-work-card.is-visible:hover .hds-link-arrow {
    color: #8E3B29;
}

.hds-work-cta.is-visible:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(27,48,34,0.14);
    background: #14281C;
}

.hds-work-cta.is-visible:hover .hds-link-arrow {
    color: #C9A15B;
}

/* Evita hover raro en mobile */

@media (hover: none) {
    .hds-work-card.is-visible:hover,
    .hds-work-cta.is-visible:hover {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(27,48,34,0.06);
    }

    .hds-work-card.is-visible:hover img {
        transform: none;
    }
}

/* ==========================================
   CÓMO TRABAJAMOS
========================================== */

.how-we-work {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-top: 0;
    background: #1B3022;
    padding: 120px 8%;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-header {
    max-width: 760px;
    margin-bottom: 72px;
}

.how-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: #C9A15B;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.how-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: #F5F5F0;
    margin-bottom: 24px;
}

.how-header p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245,245,240,0.76);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.how-step {
    position: relative;
    border-top: 1px solid rgba(245,245,240,0.22);
    padding-top: 28px;
    transition: transform .3s ease;
}

.how-step::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A15B;
    transition: width .35s ease;
}

.how-number {
    display: inline-block;
    margin-bottom: 28px;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 800;
    color: #C9A15B;
    opacity: .32;
    transition: opacity .3s ease, transform .3s ease;
}

.how-step h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    line-height: 1.25;
    font-weight: 800;
    color: #F5F5F0;
    margin-bottom: 16px;
}

.how-step p {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(245,245,240,0.72);
}

/* Desktop: hover real */
.how-step:hover {
    transform: translateY(-6px);
}

.how-step:hover::before {
    width: 100%;
}

.how-step:hover .how-number {
    opacity: 1;
    transform: translateY(-2px);
}

/* Touch: activación por scroll */
@media (hover: none) and (pointer: coarse) {
    .how-step.is-visible {
        transform: translateY(-6px);
    }

    .how-step.is-visible::before {
        width: 100%;
    }

    .how-step.is-visible .how-number {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.how-note {
    margin-top: 80px;
    background: rgba(245,245,240,0.06);
    border: 1px solid rgba(245,245,240,0.12);
    padding: 42px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.how-note p {
    max-width: 760px;
    font-size: 1.12rem;
    line-height: 1.5;
    font-weight: 700;
    color: #F5F5F0;
    margin: 0;
}

.how-note .how-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 54px;
    padding: 0 28px;
    background: #8E3B29;
    color: #F5F5F0;
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    white-space: nowrap;
    transition: background .25s ease, transform .25s ease;
}

.how-note .how-btn:hover {
    background: #743020;
    transform: translateY(-2px);
}

/* ==========================================
   RESPONSIVE — BENEFICIOS Y CÓMO TRABAJAMOS
========================================== */

@media (max-width: 1024px) {
    .hds-benefits-grid,
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hds-benefits {
        padding: 80px 6% 0;
    }

    .how-we-work {
        padding: 90px 6%;
        margin-top: 0;
    }

    .hds-benefits-grid,
    .how-steps {
        grid-template-columns: 1fr;
    }

    .how-note {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 28px;
    }
}
/* ==========================================
   SISTEMA WOOD FRAME
========================================== */

.woodframe-section {
    background: #F5F5F0;
    padding: 120px 0;
}

.woodframe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.woodframe-header {
    max-width: 760px;
    margin-bottom: 72px;
}

.woodframe-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: #1B3022;
    margin-bottom: 24px;
}

.woodframe-image-metrics {
    position: relative;
    width: 100%;
    min-height: 640px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(27,48,34,0.16);
    margin-bottom: 72px;
}

.woodframe-image-metrics img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .7s ease;
}

.woodframe-image-metrics::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(27,48,34,0.18);
    pointer-events: none;
    transition: background .4s ease;
}

.woodframe-overlay-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.woodframe-overlay-card {
    position: relative;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(245,245,240,0.22);
    background: rgba(27,48,34,0.18);
    transition: background .35s ease, backdrop-filter .35s ease;
}

.woodframe-overlay-card strong {
    display: block;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 800;
    color: #C9A15B;
    margin-bottom: 16px;
    opacity: .82;
    transition: opacity .3s ease, transform .3s ease;
}

.woodframe-overlay-card span {
    max-width: 260px;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(245,245,240,0.78);
    transition: color .3s ease, transform .3s ease;
}

.woodframe-overlay-card:hover {
    background: rgba(27,48,34,0.68);
    backdrop-filter: blur(4px);
}

.woodframe-overlay-card:hover strong {
    opacity: 1;
    transform: translateY(-4px);
}

.woodframe-overlay-card:hover span {
    color: #F5F5F0;
    transform: translateY(-4px);
}

.woodframe-image-metrics:hover img {
    transform: scale(1.04);
    filter: contrast(1.05) saturate(1.05);
}

/* ==========================================
   QUÉ INTEGRA EL SISTEMA
========================================== */

.woodframe-system {
    margin-top: 88px;
    padding-top: 72px;
    border-top: 1px solid rgba(27,48,34,0.14);
}

.woodframe-system-header {
    max-width: 760px;
    margin-bottom: 56px;
}

.woodframe-system-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
    color: #1B3022;
    margin-bottom: 20px;
}

.woodframe-system-header p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(27,48,34,0.74);
}

.woodframe-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

.woodframe-system-card {
    position: relative;
    background: #ffffff;
    min-height: 250px;
    padding: 32px;
    border: 1px solid rgba(27,48,34,0.08);
    box-shadow: 0 10px 30px rgba(27,48,34,0.06);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.woodframe-system-card h4 {
    color: #1B3022;
    font-weight: 800;
}

.woodframe-system-card::before {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    background: #C9A15B;
    margin-bottom: 28px;
    transition: width .3s ease;
}

.woodframe-system-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,161,91,0.32);
    box-shadow: 0 16px 38px rgba(27,48,34,0.10);
}

.woodframe-system-card:hover::before {
    width: 88px;
}

.woodframe-link:hover {
    color: #8E3B29;
}

.wf-note {
    display: inline-block;
    margin-top: 56px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #6E756F;
    line-height: 1.5;
    cursor: default;
}

/* ==========================================
   RESPONSIVE WOOD FRAME
========================================== */

@media (max-width: 1024px) {
    .woodframe-section {
        padding: 90px 0;
    }

    .woodframe-container {
        max-width: 100%;
        padding: 0 3rem;
        box-sizing: border-box;
    }
}

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

@media (max-width: 768px) {
    .woodframe-section {
        padding: 80px 0;
    }

    .woodframe-container {
        padding: 0 1.5rem;
    }

    .woodframe-image-metrics {
        min-height: 720px;
    }

    .woodframe-overlay-grid {
        grid-template-columns: 1fr;
    }

    .woodframe-overlay-card {
        padding: 28px;
    }
}

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

@media (max-width: 480px) {
    .woodframe-container {
        padding: 0 1.25rem;
    }
}
/* ==========================================
   FAQ WOOD FRAME
========================================== */

.woodframe-faq {
    background: #1B3022;
    padding: 120px 8%;
}

.woodframe-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
}

.woodframe-faq-intro {
    max-width: 480px;
}

.woodframe-faq-intro h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
    color: #F5F5F0;
    margin-bottom: 24px;
}

.woodframe-faq-intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245,245,240,0.72);
}

.woodframe-faq .section-eyebrow {
    color: #C9A15B;
}

.woodframe-faq-list {
    display: flex;
    flex-direction: column;
}

.woodframe-faq-item {
    border-bottom: 1px solid rgba(245,245,240,0.14);
    padding: 0;
}

.woodframe-faq-item:first-child {
    border-top: 1px solid rgba(245,245,240,0.14);
}

.woodframe-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 26px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    color: #F5F5F0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.woodframe-faq-item summary::-webkit-details-marker {
    display: none;
}

.woodframe-faq-item summary::after {
    content: "+";
    color: #C9A15B;
    font-size: 1.4rem;
    line-height: 1;
    transition: transform .25s ease;
}

.woodframe-faq-item[open] summary::after {
    content: "×";
    transform: rotate(90deg);
}

.woodframe-faq-item p {
    max-width: 720px;
    padding: 0 0 28px;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(245,245,240,0.68);
}

/* ==========================
   FAQ · CTA SOLUCIONES ADAPTABLES
========================== */

.faq-alt-system {
    grid-column: 1 / -1;
    margin: 104px 0 0;
    padding: 64px 0;
    border-top: 1px solid rgba(245,245,240,.20);

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.faq-alt-system > div:first-child {
    padding-left: 38px;
}

.faq-alt-system-title {
    max-width: 480px;
}

.faq-alt-system-copy {
    max-width: 720px;
    padding-top: 8px;
}

.faq-alt-system .section-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: #C9A15B !important;
}

.faq-alt-system h3 {
    max-width: 560px;
    margin: 0;
    color: #F5F5F0 !important;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.faq-alt-system-copy p {
    max-width: 620px;
    margin: 0 0 18px;
    color: rgba(245,245,240,.86) !important;
    font-size: 1.08rem;
    line-height: 1.75;
}

.faq-alt-system-copy .btn,
.faq-alt-system-copy a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 54px;
    margin-top: 22px;
    padding: 0 30px;

    background: #8E3B29 !important;
    color: #F5F5F0 !important;
    border: none !important;
    border-radius: 3px !important;

    font-weight: 800;
    text-decoration: none;

    transition: background .25s ease, transform .25s ease;
}

.faq-alt-system-copy .btn:hover,
.faq-alt-system-copy a.btn:hover {
    background: #743020 !important;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .woodframe-faq-container,
    .faq-alt-system {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .faq-alt-system {
        margin-top: 80px;
        padding-bottom: 72px;
    }
}

@media (max-width: 768px) {
    .woodframe-faq {
        padding: 90px 6%;
    }
}
@media (max-width: 768px) {

    .faq-alt-system > div:first-child {
        padding-left: 0;
    }

    .faq-alt-system-title {
        max-width: 100%;
    }
}

/* ==========================================
   PARA QUIÉN CONSTRUIMOS
========================================== */

.hds-audience-section {
    background: #F5F5F0;
    padding: 90px 0 110px;
}

.hds-audience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hds-audience-header {
    max-width: 760px;
    margin-bottom: 56px;
}

.hds-audience-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    color: #1B3022;
    margin-bottom: 24px;
}

.hds-audience-header p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(27,48,34,0.72);
}

.hds-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    box-shadow: 0 18px 46px rgba(27,48,34,0.08);
}

.hds-audience-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 46px 42px 40px;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease;
}

.hds-audience-card:hover {
    transform: translateY(-4px);
}

.audience-bg-letter {
    position: absolute;
    top: -12px;
    right: 28px;
    font-size: 7.5rem;
    font-weight: 800;
    line-height: 1;
    opacity: .08;
    pointer-events: none;
}

.audience-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.hds-audience-card h3 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 2.4vw, 2.45rem);
    line-height: 1.05;
    font-weight: 800;
}

.hds-audience-card p {
    max-width: 360px;
    margin-bottom: auto;
    font-size: 1rem;
    line-height: 1.75;
}

.hds-audience-card a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    margin-top: 32px;
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.hds-audience-card a::after {
    content: "→";
    width: 0;
    margin-left: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-4px);
    transition: opacity .25s ease, transform .25s ease, width .25s ease, margin-left .25s ease;
}

.hds-audience-card a:hover::after {
    width: 16px;
    margin-left: 6px;
    opacity: 1;
    transform: translateX(0);
}

/* CARD 1 */

.audience-family {
    background: #1B3022;
}

.audience-family .audience-eyebrow {
    color: #C9A15B;
}

.audience-family .audience-bg-letter {
    right: 40px;
    color: #F5F5F0;
    opacity: .08;
}

.audience-family h3,
.audience-family p,
.audience-family a {
    color: #F5F5F0;
}

/* CARD 2 */

.audience-developers {
    background: #C9A15B;
}

.audience-developers .audience-eyebrow {
    color: rgba(27,48,34,.65);
}

.audience-developers h3,
.audience-developers p,
.audience-developers a {
    color: #1B3022;
}

/* CARD 3 */

.audience-public {
    background: #8F9497;
}

.audience-public .audience-eyebrow {
    color: rgba(27,48,34,.82);
}

.audience-public h3,
.audience-public p,
.audience-public a {
    color: #1B3022;
}
/* RESPONSIVE */

@media (max-width: 1024px) {
    .hds-audience-section {
        padding: 90px 3rem;
    }

    .hds-audience-grid {
        grid-template-columns: 1fr;
    }

    .hds-audience-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hds-audience-section {
        padding: 80px 1.5rem;
    }

    .hds-audience-card {
        padding: 32px;
    }

    .hds-audience-card h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .hds-audience-section {
        padding: 72px 1.25rem;
    }

    .hds-audience-card {
        padding: 28px;
    }
}

/* ================================
   HDS MODELOS
================================ */

.hds-models-section {
  background: #F5F5F0;
  padding: 90px 0 80px;
  color: #1B3022;
}

.hds-models-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 42px;
}

.hds-section-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.hds-section-eyebrow,
.hds-detail-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: #8E3B29;
  text-transform: uppercase;
}

.hds-section-header h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  color: #1B3022;
}

.hds-section-header p {
  max-width: 620px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(27,48,34,.72);
}

/* VALOR REFERENCIA */

.hds-reference-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  margin: 0 0 42px;
  padding: 42px;
  background: #1B3022;
  color: #F5F5F0;
  border-radius: 2px;
  box-shadow: 0 22px 60px rgba(27,48,34,.18);
}

.hds-reference-main span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: #C9A15B;
  text-transform: uppercase;
}

.hds-reference-main h3 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .95;
  font-weight: 800;
  color: #F5F5F0;
}

.hds-reference-main p {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,245,240,.76);
}

.hds-reference-side {
  align-self: center;
}
/* Plazo estimado */

.hds-reference-time {
    margin: 32px 0 28px;
}

.hds-reference-time strong {
    display: block;
    color: #C9A15B;
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 8px;
}

.hds-reference-time span {
    display: block;
    color: rgba(245,245,240,.78);
    font-size: .95rem;
    line-height: 1.4;
}
.hds-reference-time strong {
    font-size: clamp(1.8rem, 2vw, 2.2rem);
}

.hds-reference-side ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.hds-reference-side li {
  display: flex;
  gap: 12px;
  color: rgba(245,245,240,.86);
}

.hds-reference-side li::before {
  content: "✓";
  color: #C9A15B;
  font-weight: 800;
}

.hds-reference-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  background: #8E3B29;
  color: #F5F5F0;
  font-weight: 800;
  text-decoration: none;
  border-radius: 3px;
  transition: background .25s ease, transform .25s ease;
}

.hds-reference-cta:hover {
  background: #732f21;
  transform: translateY(-2px);
}

.hds-reference-card small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(245,245,240,.14);
  font-size: .82rem;
  color: rgba(245,245,240,.56);
}

/* GRID MODELOS */

.hds-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 42px;
  align-items: stretch;
}

.hds-model-card {
  height: 450px;
  background: #ffffff;
  border: 1px solid rgba(27,48,34,.10);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hds-model-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,161,91,.55);
  box-shadow: 0 16px 36px rgba(27,48,34,.12);
}

.hds-model-card.active {
  transform: none;
  border-color: rgba(27,48,34,.10);
  box-shadow: none;
}

.hds-model-image {
  height: 230px;
  flex: 0 0 230px;
}

.hds-model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hds-model-card:hover .hds-model-image img {
  transform: scale(1.045);
}

.hds-model-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hds-model-content span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #C9A15B;
}

.hds-model-content h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 800;
  color: #1B3022;
}

.hds-model-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.hds-model-specs li {
  padding: 5px 10px;
  background: rgba(27,48,34,.06);
  color: rgba(27,48,34,.72);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 3px;
}

.hds-model-specs li::before {
  content: none;
}

.hds-model-content p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
  color: rgba(27,48,34,.68);
}

/* PERSONALIZADO */

/* Card proyecto a medida */



.hds-custom-card {
  background: #1B3022;
  border-color: rgba(245,245,240,.16);
}

.hds-custom-card .hds-model-content {
  height: 100%;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.hds-custom-card span {
  color: #C9A15B;
}

.hds-custom-card h3,
.hds-custom-card p {
  color: #F5F5F0;
}

.hds-custom-card p {
  color: rgba(245,245,240,.76);
}

.hds-custom-card .hds-custom-btn {
  width: 100%;
  margin-top: auto;
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  color: #F5F5F0;
  border: 1px solid rgba(245,245,240,.38);
  border-radius: 3px;

  font-weight: 800;
  text-decoration: none;

  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.hds-custom-card .hds-custom-btn:hover {
  background: #C9A15B;
  color: #1B3022;
  border-color: #C9A15B;
}

/* Hover card personalizada */

.hds-custom-card {
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.hds-custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(27,48,34,.12);
  border-color: rgba(201,161,91,.35);
}

.hds-custom-card:hover h3 {
  color: #C9A15B !important;
}

.hds-model-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding: 0;
    list-style: none;
}

.hds-model-specs li {
    padding: 6px 10px;
    background: rgba(27,48,34,.06);
    border-radius: 4px;

    font-size: .82rem;
    font-weight: 600;
    color: rgba(27,48,34,.78);
}
.hds-models-footer {
    margin-top: 48px;
    padding-left: 0;
}

.hds-models-footer .hds-link-arrow {
    color: #1B3022;
    font-weight: 800;
}

.hds-models-footer .hds-link-arrow:hover {
    color: #8E3B29;
}

.models-note,
.custom-model-note {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6E756F;
    cursor: default;
}

.models-note {
    margin-top: 32px;
}

.custom-model-note {
    margin-top: 130px;
    color: rgba(245, 245, 240, 0.72);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hds-reference-card,
  .hds-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hds-custom-card {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .hds-models-container {
    padding: 0 6%;
  }

  .hds-reference-card,
  .hds-models-grid {
    grid-template-columns: 1fr;
  }

  .hds-custom-card {
    grid-column: auto;
  }

  .hds-model-card,
  .hds-custom-card {
    height: auto;
    min-height: 420px;
  }
}
/* ==========================================
   EXPERIENCIAS REALES / TESTIMONIOS
========================================== */

.hds-testimonials-section {
  background: #F5F5F0;
  padding: 110px 8%;
}

.hds-testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hds-testimonials-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.hds-testimonials-header h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: #1B3022;
  margin-bottom: 24px;
}

.hds-testimonials-header p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(27,48,34,.72);
}

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

/* CARD */

.hds-testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 38px;
  background: #ffffff;
  border: 1px solid rgba(27,48,34,.10);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.hds-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(27,48,34,.10);
}

.hds-testimonial-watermark {
  position: absolute;

  top: 24px;
  right: 24px;

  width: 70px;
  height: auto;

  opacity: .025;

  pointer-events: none;
  z-index: 0;
}

.hds-testimonial-quote,
.hds-testimonial-author {
  position: relative;
  z-index: 1;
}

.hds-testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0 0 42px;
  font-size: 1.08rem;
  line-height: 1.75;
  font-weight: 600;
  color: #1B3022;
}

.hds-testimonial-quote::before {
  content: "“";
  display: block;
  margin-bottom: 18px;
  font-size: 3rem;
  opacity: .9;
  line-height: .7;
  font-weight: 800;
  color: #C9A15B;
}

/* AUTHOR */

.hds-testimonial-author {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(27,48,34,.10);
}

.hds-testimonial-author > span {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1B3022;
  color: #F5F5F0;
  font-size: .9rem;
  font-weight: 800;
  border-radius: 50%;
}

.hds-testimonial-author strong {
  display: block;
  margin-bottom: 4px;
  font-size: .98rem;
  color: #1B3022;
}

.hds-testimonial-author small {
  display: block;
  font-size: .82rem;
  line-height: 1.4;
  color: rgba(27,48,34,.62);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hds-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hds-testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hds-testimonials-section {
    padding: 90px 6%;
  }

  .hds-testimonial-card {
    padding: 32px;
  }
}
/* ==========================================
   TESTIMONIOS - INDICADORES
========================================== */

.hds-testimonials-stats {
  margin-top: 72px;
  background: #1B3022;
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-radius: 2px;
  overflow: hidden;
}

.hds-testimonial-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(245,245,240,.14);
}

.hds-testimonial-stat:last-child {
  border-right: 0;
}

.hds-testimonial-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 800;
  color: #F5F5F0;
}

.hds-testimonial-stat span {
  display: block;
  font-size: .82rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(245,245,240,.62);
}

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

  .hds-testimonial-stat {
    border-bottom: 1px solid rgba(245,245,240,.14);
  }
}

@media (max-width: 520px) {
  .hds-testimonials-stats {
    grid-template-columns: 1fr;
  }

  .hds-testimonial-stat {
    border-right: 0;
  }
}
/* ==========================================
   SOMOS HDS
========================================== */

.about-hds {
  background: #F5F5F0;
  padding: 110px 8%;
}

.about-hds-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hds-header {
  max-width: 820px;
  margin-bottom: 64px;
}

.about-hds-header h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: #1B3022;
  margin-bottom: 24px;
}

.about-hds-header p {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(27,48,34,.72);
}

.about-hds-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(27,48,34,.10);
  overflow: hidden;
}

.about-hds-image {
  min-height: 520px;
  background: rgba(27,48,34,.08);
}

.about-hds-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hds-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1B3022;
}

.about-stat {
  padding: 42px 34px;
  border-right: 1px solid rgba(245,245,240,.14);
  border-bottom: 1px solid rgba(245,245,240,.14);
}

.about-stat:nth-child(2),
.about-stat:nth-child(4) {
  border-right: 0;
}

.about-stat:nth-child(3),
.about-stat:nth-child(4) {
  border-bottom: 0;
}

.about-stat .number {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 800;
  color: #F5F5F0;
}

.about-stat .label {
  display: block;
  max-width: 180px;
  font-size: .82rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(245,245,240,.62);
}

.about-hds-footer {
  margin-top: 34px;
}

/* Imagen */

.about-hds-image {
    overflow: hidden;
}

.about-hds-image img {
    transition: transform .6s ease, filter .6s ease;
}

.about-hds-image:hover img {
    transform: scale(1.03);
    filter: contrast(1.03);
}



/* Hover indicadores */

.about-stat {
    background: rgba(201,161,91,.04);
    transition: background .3s ease;
}

.about-stat .number {
    transition: color .3s ease, transform .3s ease;
}

.about-stat:hover .number {
    color: #C9A15B;
    transform: translateY(-3px);
}


/* RESPONSIVE */

@media (max-width: 1024px) {
  .about-hds-content {
    grid-template-columns: 1fr;
  }

  .about-hds-image {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .about-hds {
    padding: 90px 6%;
  }

  .about-hds-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    border-right: 0;
  }

  .about-stat:nth-child(3) {
    border-bottom: 1px solid rgba(245,245,240,.14);
  }
}
/* ==========================================
   CTA TEXTO HDS
========================================== */

.hds-link-arrow,
.woodframe-link,
.audience-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    position: relative;

    font-weight: 800;
    text-decoration: none;

    transition: color .25s ease;
}

.hds-link-arrow::before,
.woodframe-link::before,
.audience-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;

    width: calc(100% - 20px);
    height: 1px;

    background: currentColor;

    transition: width .25s ease;
}

.hds-link-arrow::after,
.woodframe-link::after,
.audience-link::after {
    content: "→";
    display: inline-block;

    width: 14px;
    margin-left: 6px;

    opacity: 0;
    transform: translateX(-6px);

    transition: opacity .25s ease, transform .25s ease;
}

.hds-link-arrow:hover::before,
.woodframe-link:hover::before,
.audience-link:hover::before {
    width: 100%;
}

.hds-link-arrow:hover::after,
.woodframe-link:hover::after,
.audience-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.hds-link-arrow:hover,
.woodframe-link:hover {
    color: #8E3B29;
}

.audience-link:hover {
    color: inherit;
}
/* ==========================================
   TOUCH UX — activar efectos al entrar en pantalla
========================================== */

@media (hover: none) and (pointer: coarse) {

    .hds-problem-card.is-visible::before,
    .hds-step-card.is-visible::before,
    .woodframe-system-card.is-visible::before {
        width: 100% !important;
        opacity: 1 !important;
        background: #C9A15B !important;
    }

    .hds-problem-card.is-visible,
    .hds-step-card.is-visible,
    .woodframe-system-card.is-visible {
        border-color: rgba(201,161,91,0.32) !important;
    }

    .hds-link-arrow.is-visible::after,
    .woodframe-link.is-visible::after,
    .audience-link.is-visible::after {
        width: 100% !important;
    }

    .hds-link-arrow.is-visible .arrow,
    .woodframe-link.is-visible .arrow,
    .audience-link.is-visible .arrow {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .hds-problem-card,
    .hds-step-card,
    .woodframe-system-card,
    .hds-model-card,
    .hds-work-card,
    .hds-audience-card {
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
