/* ================================================================
   STYLES.CSS — Estilos Globales (diferido)
   Hormigón Impreso en Toledo
   Paleta: Antracita cálido · Ámbar tierra · Blanco roto
   ================================================================ */

/* ---- RESET + BASE + VARIABLES ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --color-primary: #1A1714;
    --color-secondary: #C8863B;
    --color-accent: #8A7660;
    --color-text: #2C2822;
    --color-text-light: #78716C;
    --color-bg: #ffffff;
    --color-bg-light: #F7F4F0;
    --color-bg-dark: #1A1714;
    --color-border: #EAE5DC;
    --color-whatsapp: #25D366;
    --font-base: 'Manrope', system-ui, -apple-system, sans-serif;
    --container: 1200px;
    --radius: 10px;
    --shadow: 0 4px 16px rgba(26, 23, 20, .09);
    --transition: all .25s ease
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    z-index: 10000;
    border-radius: 0 0 var(--radius) var(--radius)
}

.skip-link:focus {
    top: 0
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}

/* ---- HEADER / NAV ---- */
.header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow .3s
}

.header.scrolled {
    box-shadow: 0 2px 16px rgba(26, 23, 20, .1)
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 16px
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
    flex-shrink: 0
}

.logo-svg {
    width: 38px;
    height: 38px
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.logo-text span:first-child {
    color: var(--color-primary);
    font-size: 1rem
}

.logo-text span:last-child {
    color: var(--color-secondary);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em
}

.nav-main > ul {
    display: flex;
    gap: 4px;
    align-items: center
}

.nav-main a {
    padding: 10px 16px;
    font-size: .92rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--color-text)
}

.nav-main a:hover,
.nav-main a.active {
    background: var(--color-bg-light);
    color: var(--color-secondary)
}

.has-dropdown {
    position: relative
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(26, 23, 20, .15);
    padding: 10px 0;
    z-index: 50
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border)
}

/* Puente invisible para evitar que el menú se cierre al bajar el puntero */
.dropdown::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    z-index: -1;
}

.has-dropdown:hover .dropdown {
    display: block
}

.dropdown li {
    position: relative;
    z-index: 1
}

.dropdown a {
    display: block;
    padding: 11px 20px;
    font-size: .88rem;
    font-weight: 500;
    border-radius: 0
}

.dropdown a:hover {
    background: var(--color-bg-light);
    color: var(--color-secondary)
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-secondary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(200, 134, 59, .25)
}

.header-cta:hover {
    background: #A96E25;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(200, 134, 59, .35)
}

.header-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition)
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    font-size: .97rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-base)
}

.btn svg {
    width: 17px;
    height: 17px;
    fill: currentColor
}

.btn-primary {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary)
}

.btn-primary:hover {
    background: #A96E25;
    border-color: #A96E25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 134, 59, .4)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .45)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff
}

.btn-dark {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

.btn-dark:hover {
    background: #2C2622;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 23, 20, .3)
}

/* ---- MOBILE NAV ---- */
.mobile-cta-bar {
    display: none
}

@media (max-width: 767px) {
    /* CTA bar fija abajo */
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        z-index: 999;
        background: var(--color-bg);
        box-shadow: 0 -2px 12px rgba(0, 0, 0, .12);
        padding: 8px 10px;
        gap: 8px
    }

    .mobile-cta-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 13px 6px;
        border-radius: 8px;
        font-weight: 700;
        font-size: .82rem;
        min-height: 50px;
        white-space: nowrap
    }

    .cta-email {
        background: var(--color-secondary);
        color: #fff
    }

    .cta-presupuesto {
        background: var(--color-primary);
        color: #fff
    }

    .mobile-cta-bar svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        flex-shrink: 0
    }

    body {
        padding-bottom: 74px
    }

    /* Hamburger visible */
    .nav-toggle {
        display: flex
    }

    /* Hamburger → X cuando open */
    .nav-toggle span {
        transition: transform .25s ease, opacity .2s ease
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0)
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

    /* Panel nav overlay — ocupa toda la pantalla bajo el header */
    .nav-main {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        z-index: 800;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-direction: column
    }

    .nav-main.open {
        display: flex
    }

    /* Lista raíz */
    .nav-main > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        flex: 1;
        padding: 8px 0 80px
    }

    /* Links de primer nivel */
    .nav-main > ul > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 24px;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--color-primary);
        border-bottom: 1px solid var(--color-border);
        background: #fff
    }

    .nav-main > ul > li > a:hover,
    .nav-main > ul > li > a:active {
        background: var(--color-bg-light);
        color: var(--color-secondary)
    }

    /* Dropdown siempre expandido en mobile */
    .dropdown {
        display: block !important;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
        padding: 4px 0;
        background: var(--color-bg-light)
    }

    .dropdown::before,
    .dropdown::after {
        display: none
    }

    .dropdown a {
        display: block;
        padding: 13px 24px 13px 40px;
        font-size: .95rem;
        font-weight: 500;
        color: var(--color-text-light);
        border-radius: 0;
        border-bottom: 1px solid var(--color-border)
    }

    .dropdown li:last-child a {
        border-bottom: none
    }

    .dropdown a:hover,
    .dropdown a:active {
        background: var(--color-border);
        color: var(--color-secondary)
    }

    /* Links sin dropdown (Proyectos, Nosotros, Blog) */
    .nav-main > ul > li:not(.has-dropdown) > a {
        border-bottom: 1px solid var(--color-border)
    }

    .nav-main > ul > li:last-child > a {
        border-bottom: none
    }

    .header-cta {
        display: none
    }
}

/* ---- SECTIONS ---- */
.section {
    padding: 50px 0
}

.section-alt {
    background: var(--color-bg-light)
}

.section-dark {
    background: var(--color-bg-dark);
    color: #fff
}

.section-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2C2622 62%, #3A3028 100%);
    color: #fff
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--color-secondary);
    margin-bottom: 16px
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px
}

.section-dark .section-label,
.section-gradient .section-label {
    color: var(--color-secondary)
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.section-dark .section-title,
.section-gradient .section-title {
    color: #fff
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-light);
    max-width: 680px;
    margin-bottom: 32px
}

.section-dark .section-subtitle,
.section-gradient .section-subtitle {
    color: rgba(255, 255, 255, .75)
}

/* ---- GRID ---- */
.grid {
    display: grid;
    gap: 30px
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

@media(max-width:1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }

    .grid {
        gap: 20px
    }
}

/* ---- LAYOUT & SPACING ---- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-body {
    padding: 80px 0;
}

.page-layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

@media(max-width: 1024px) {
    .page-layout-sidebar {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
    padding: 20px 0;
    background: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 12px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.breadcrumbs li::after {
    content: '/';
    color: var(--color-border);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--color-text-light);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

.breadcrumbs li:last-child {
    color: var(--color-primary);
    font-weight: 600;
}

/* ---- TYPOGRAPHY REFINEMENTS ---- */
body {
    line-height: 1.8;
    color: var(--color-text);
}

p {
    margin-bottom: 24px;
}

h2,
h3,
h4 {
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.01em
}

.article-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 32px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    display: block;
}
h3,
h4 {
    margin-top: 48px;
    margin-bottom: 24px;
}

h2:first-child,
h3:first-child {
    margin-top: 0;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 23, 20, .12);
    border-color: var(--color-secondary)
}

.service-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), #3A3028);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.service-card .icon svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary)
}

.service-card p {
    font-size: .95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    flex: 1
}

.service-card .card-link {
    font-size: .9rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
    margin-top: 4px;
}

.service-card .card-link:hover {
    gap: 10px
}

.service-card .card-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor
}

/* ---- FEATURE LIST ---- */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 8px
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--color-secondary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--color-primary), #3A3028);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.feature-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-primary)
}

.feature-item p {
    font-size: .9rem;
    color: var(--color-text-light);
    line-height: 1.6
}

@media(max-width:767px) {
    .features-list {
        grid-template-columns: 1fr
    }
}

/* ---- STATS ---- */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 44px
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 130px
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1
}

.section-dark .stat-number,
.section-gradient .stat-number {
    color: var(--color-secondary)
}

.stat-label {
    font-size: .88rem;
    color: var(--color-text-light);
    margin-top: 6px
}

.section-dark .stat-label,
.section-gradient .stat-label {
    color: rgba(255, 255, 255, .65)
}

/* ---- PROCESS ---- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step
}

.process-step {
    text-align: center;
    position: relative
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-secondary), #E09A50);
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary)
}

.process-step p {
    font-size: .87rem;
    color: var(--color-text-light)
}

.section-dark .process-step h3 {
    color: #fff
}

@media(max-width:767px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }
}

@media(max-width:480px) {
    .process-steps {
        grid-template-columns: 1fr
    }
}

/* ---- REVIEWS ---- */
.review-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: var(--transition)
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow)
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    flex-shrink: 0
}

.review-name {
    font-weight: 700;
    font-size: .95rem
}

.review-meta {
    font-size: .8rem;
    color: var(--color-text-light)
}

.review-stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 10px
}

.review-text {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--color-text);
    font-style: italic
}

.review-google {
    position: absolute;
    top: 18px;
    right: 18px;
    opacity: .5
}

.review-google svg {
    width: 22px;
    height: 22px
}

/* ---- FAQ ---- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    background: transparent;
    transition: var(--transition);
    gap: 16px;
    color: var(--color-primary);
    width: 100%;
    text-align: left;
    border: none;
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: var(--color-text-light);
}

.faq-item.active .faq-icon,
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    stroke: var(--color-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
    max-height: 1000px;
}

.faq-answer-inner {
    padding: 10px 24px 24px;
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* ---- ZONES ---- */
.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px
}

.zone-tag {
    background: var(--color-bg);
    border: 1.5px solid var(--color-border);
    border-radius: 40px;
    padding: 10px 22px;
    font-size: .88rem;
    font-weight: 600;
    transition: var(--transition);
    color: var(--color-text)
}

.zone-tag:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 134, 59, .3)
}

/* ---- ZONE CARDS (hub) ---- */
.zone-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: var(--transition);
    text-align: center;
    color: var(--color-text)
}

.zone-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(200, 134, 59, .15)
}

.zone-card .zone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: 1.5px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px
}

.zone-card .zone-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-secondary)
}

.zone-card h3 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-primary)
}

.zone-card p {
    font-size: .85rem;
    color: var(--color-text-light);
    margin-bottom: 14px
}

.zone-card .card-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    gap: 5px
}

/* ---- SERVICE CLUSTERS (Grid of sub-services) ---- */
.service-cluster {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.cluster-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.cluster-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 40px rgba(200, 134, 59, 0.12);
}

.cluster-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: var(--color-bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.cluster-item:hover .cluster-icon {
    background: var(--color-secondary);
}

.cluster-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--color-primary);
    transition: fill 0.3s;
}

.cluster-item:hover .cluster-icon svg {
    fill: #fff;
}

.cluster-item span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.cluster-item h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* ---- PRICING TABLES ---- */
.price-table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.price-table th {
    background: var(--color-bg-light);
    color: var(--color-primary);
    padding: 18px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--color-border);
}

.price-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: rgba(200, 134, 59, 0.03);
}

.price-tag {
    font-weight: 800;
    color: var(--color-secondary);
    font-size: 1.05rem;
    white-space: nowrap;
}

.cta-section {
    text-align: center;
    padding: 72px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2C2622 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 134, 59, .18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 14px
}

.cta-section p {
    font-size: 1.02rem;
    opacity: .88;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.cta-section .cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* ---- CTA INLINE ---- */
.cta-inline {
    text-align: center;
    padding: 48px 20px;
    background: linear-gradient(135deg, #C8863B 0%, #E09A50 50%, #D4915F 100%);
    color: #fff
}

.cta-inline h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px
}

.cta-inline p {
    font-size: .98rem;
    opacity: .92;
    margin-bottom: 22px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.cta-inline .btn-white {
    background: #fff;
    color: #C8863B;
    border-color: #fff
}

.cta-inline .btn-white:hover {
    background: #FEF3E2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2)
}

/* ---- MAP ---- */
.map-facade {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 340px
}

.map-facade iframe {
    width: 100%;
    height: 340px;
    border: 0
}

/* ---- FOOTER ---- */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, .82);
    padding: 64px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 44px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.footer-logo svg {
    width: 36px;
    height: 36px
}

.footer-logo span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff
}

.footer-tagline {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 18px
}

.footer h3 {
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px
}

.footer ul li {
    margin-bottom: 8px
}

.footer a {
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    transition: color .2s
}

.footer a:hover {
    color: var(--color-secondary)
}

.footer address {
    font-style: normal;
    line-height: 1.8;
    font-size: .88rem
}

.footer-hours {
    margin-top: 10px;
    font-size: .83rem;
    color: rgba(255, 255, 255, .5)
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 44px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .45)
}

.footer-legal nav {
    display: flex;
    gap: 18px
}

.footer-legal a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45)
}

@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:767px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-legal {
        flex-direction: column;
        text-align: center
    }
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
    padding: 12px 0;
    font-size: .83rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border)
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px
}

.breadcrumbs a {
    color: var(--color-text-light);
    transition: color .2s
}

.breadcrumbs a:hover {
    color: var(--color-secondary)
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 6px;
    color: var(--color-border)
}

.breadcrumbs li:last-child {
    color: var(--color-text);
    font-weight: 500
}

/* ---- EMAIL FLOAT ---- */
.email-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(200, 134, 59, .4);
    z-index: 1000;
    transition: transform .25s, box-shadow .25s
}

.email-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(200, 134, 59, .5)
}

.email-float svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

@media(max-width:767px) {
    .email-float {
        bottom: 76px
    }
}

/* ---- MOBILE CTA BAR ---- */
.mobile-cta-bar {
    display: none
}

@media(max-width:767px) {
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        z-index: 999;
        background: var(--color-bg);
        box-shadow: 0 -2px 12px rgba(0, 0, 0, .1);
        padding: 8px;
        gap: 8px
    }

    .mobile-cta-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        border-radius: 8px;
        font-weight: 700;
        font-size: .92rem;
        min-height: 50px
    }

    .cta-email {
        background: var(--color-secondary);
        color: #fff
    }

    .cta-presupuesto {
        background: var(--color-primary);
        color: #fff
    }

    .mobile-cta-bar svg {
        width: 18px;
        height: 18px;
        fill: currentColor
    }

    body {
        padding-bottom: 74px
    }
}

/* ---- FORM ---- */
.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    margin-bottom: 7px;
    color: var(--color-primary)
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    font-size: .98rem;
    font-family: var(--font-base);
    transition: border-color .2s;
    background: var(--color-bg);
    color: var(--color-text)
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(200, 134, 59, .12)
}

.form-disclaimer {
    font-size: .8rem;
    color: var(--color-text-light);
    margin-top: 12px;
    text-align: center
}

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, #2C2622 0%, #1A1714 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(200, 134, 59, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.label-accent {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.1;
    color: #fff;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.page-header-cta {
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.page-header-cta .btn {
    padding: 16px 36px;
    font-size: 1.05rem;
}

@media(max-width:767px) {
    .page-header {
        padding: 44px 0
    }

    .page-header h1 {
        font-size: 1.7rem
    }
}

/* ---- CONTENT BODY ---- */
.content-body {
    padding: 52px 0
}

.content-body h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 36px 0 14px
}

.content-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 26px 0 10px;
    color: var(--color-primary)
}

.content-body p {
    margin-bottom: 16px;
    line-height: 1.78;
    color: var(--color-text)
}

.content-body ul,
.content-body ol {
    margin-bottom: 16px;
    padding-left: 24px
}

.content-body ul {
    list-style: disc
}

.content-body ol {
    list-style: decimal
}

.content-body li {
    margin-bottom: 8px;
    line-height: 1.65
}

.content-body strong {
    color: var(--color-primary)
}

.lazy-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px
}

/* ---- PRICE TABLE ---- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius);
    overflow: hidden
}

.price-table th {
    background: var(--color-primary);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: .88rem
}

.price-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--color-border);
    font-size: .9rem
}

.price-table tr:nth-child(even) {
    background: var(--color-bg-light)
}

/* ---- GALLERY ---- */
.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px
}

.gallery-showcase img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .3s, box-shadow .3s
}

.gallery-showcase img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .15)
}

@media(max-width:767px) {
    .gallery-showcase {
        grid-template-columns: 1fr
    }

    .gallery-showcase img {
        height: 200px
    }
}

/* ---- RELATED SERVICES ---- */
.related-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    border: 1.5px solid var(--color-border);
    transition: var(--transition)
}

.related-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.related-card svg {
    width: 20px;
    height: 20px;
    fill: var(--color-secondary);
    flex-shrink: 0
}

.related-card span {
    font-weight: 600;
    font-size: .88rem;
    color: var(--color-primary)
}

@media(max-width:767px) {
    .related-services {
        grid-template-columns: 1fr
    }
}

/* ---- BLOG CARDS ---- */
.blog-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition)
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(26, 23, 20, .1);
    border-color: var(--color-secondary)
}

.blog-card-img {
    aspect-ratio: 16/9;
    background: var(--color-bg-light);
    overflow: hidden
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05)
}

.blog-card-body {
    padding: 22px
}

.blog-card-cat {
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-secondary);
    margin-bottom: 8px
}

.blog-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary);
    line-height: 1.4
}

.blog-card-body p {
    font-size: .87rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px
}

.blog-card-meta {
    font-size: .8rem;
    color: var(--color-text-light)
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* ---- TRUST BADGES ---- */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    margin-top: 30px
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--color-text-light);
    font-weight: 500
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--color-secondary);
    flex-shrink: 0
}

/* ---- STICKY EMAIL ---- */
.btn-email-sticky {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-secondary);
    color: #fff;
    padding: 11px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
    white-space: nowrap
}

.btn-email-sticky:hover {
    background: #A96E25;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(200, 134, 59, .4)
}

.btn-email-sticky svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

/* ---- HERO GEOMETRIC PATTERN ---- */
/* ---- NEW COMPONENTS FOR DENSITY ---- */
.card-simple {
    padding: 35px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.card-simple:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-simple .icon-small {
    width: 32px;
    height: 32px;
    fill: var(--color-secondary);
    margin-bottom: 20px;
}

.card-simple h4, .card-simple h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.card-simple p {
    font-size: .92rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 23, 20, 0.9), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    opacity: 0;
    transition: opacity .3s ease;
}

.gallery-item:hover .gallery-info {
    opacity: 1;
}

.gallery-info span:first-child {
    font-weight: 700;
    font-size: 1.1rem;
}

.gallery-info span:last-child {
    font-size: .85rem;
    opacity: 0.8;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 24px;
}

.blog-date {
    display: block;
    font-size: .75rem;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
    line-height: 1.4;
}

.blog-body p {
    font-size: .88rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: var(--radius);
    font-weight: 700;
    transition: var(--transition);
}

/* ---- PRICE CARDS ---- */
.price-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border-color: var(--color-secondary);
    border-width: 2px;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(200, 134, 59, 0.1);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-secondary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 25px;
}

.price-header h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.price-value span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.price-card ul {
    margin-bottom: 0;
}

.price-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: var(--color-text-light);
    margin-bottom: 14px;
}

.price-card ul li svg {
    width: 20px;
    height: 20px;
    fill: var(--color-secondary);
    flex-shrink: 0;
}

.price-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ---- TRUST STRIP ---- */
.trust-strip {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 134, 59, 0.12);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    fill: var(--color-secondary);
}

.trust-item span {
    font-size: .85rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

/* ---- COMPARISON TABLE ---- */
.comparison-container {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th {
    padding: 20px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-border);
}

.comparison-table td {
    padding: 18px 20px;
    font-size: .95rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.tag-high {
    background: #DCFCE7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}

.tag-medium {
    background: #FEF3E2;
    color: #9A3412;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}

.tag-low {
    background: #FEE2E2;
    color: #991B1B;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}

/* ---- IMAGE FRAME ---- */
.img-frame {
    position: relative;
    padding: 15px;
    background: #F7F4F0;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.img-rounded {
    border-radius: 15px;
    width: 100%;
    display: block;
}

.frame-tag {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    font-weight: 700;
    font-size: .85rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ---- ICON LIST ---- */
.icon-list {
    margin-top: 25px;
}

.icon-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: .98rem;
    line-height: 1.6;
}

.icon-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8863B'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center/contain;
}

.icon-list li strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: 2px;
}

/* ---- TEXTURE SECTION ---- */
.texture-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.texture-feature {
    background: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    font-size: .95rem;
}

.texture-feature strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.texture-image-stack {
    position: relative;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-secondary);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    font-size: .85rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(200, 134, 59, 0.3);
    z-index: 2;
}

/* ---- PROCESS TIMELINE ---- */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 15px;
    opacity: 0.8;
}

.process-card h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
}

.process-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .04;
    pointer-events: none;
    background-image:
        linear-gradient(45deg, #fff 25%, transparent 25%),
        linear-gradient(-45deg, #fff 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #fff 75%),
        linear-gradient(-45deg, transparent 75%, #fff 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px
}

/* ---- TOPBAR ---- */
.topbar {
    background-color: #1A1714;
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 2px solid var(--color-primary);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.topbar a:hover {
    color: var(--color-primary);
}

.topbar-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.topbar-socials a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-contact svg {
    width: 16px;
    height: 16px;
    fill: var(--color-primary);
}

/* ---- SERVICE ELEMENTS ---- */
.specs-card {
    background: var(--color-bg);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li span {
    color: var(--color-text-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.process-item {
    position: relative;
    background: #fff;
    padding: 30px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.process-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.process-icon {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.process-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin: 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    user-select: none;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-light);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--color-text-light);
}

.faq-item.open .faq-answer {
    padding-bottom: 24px;
    max-height: 300px;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    fill: var(--color-primary);
}

.faq-item.open .faq-question {
    color: var(--color-primary);
}

.colorful-section {
    background: linear-gradient(135deg, var(--color-bg) 0%, rgba(200, 134, 59, 0.1) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 25px 0;
}

.colorful-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media(max-width: 900px) {
    .colorful-grid {
        grid-template-columns: 1fr;
    }

    .topbar .container {
        flex-direction: column;
        gap: 10px;
    }
}

.colorful-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.colorful-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- PROJECTS GALLERY (Global) ---- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 0;
}

.project-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 23, 20, 0.12);
    border-color: var(--color-secondary);
}

.project-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

.project-item:hover .project-image img {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 23, 20, 0.85);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.project-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 0 0 12px 0;
    font-weight: 800;
    line-height: 1.3;
}

.project-content p {
    font-size: 0.98rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.project-meta span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-meta span svg {
    width: 16px;
    height: 16px;
    fill: var(--color-secondary);
}

@media(max-width: 900px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-image {
        height: 300px;
    }
}
/* ---- ZONAS DE APLICACIÓN (cluster home) ---- */
.zona-app-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(26, 23, 20, .06);
}

.zona-app-media {
    margin: 0;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(200, 134, 59, .12), var(--color-bg-light));
}

.zona-app-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zona-app-body {
    padding: 22px 22px 26px;
}

.zona-app-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.zona-app-card p {
    font-size: .88rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}
