@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

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

:root {
    --black: #0D0D0D;
    --white: #FAFAFA;
    --cream: #F5F3F0;
    --gold: #D4AF37;
    --gold-dark: #B8941F;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-weight: 200;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 1.2rem 5%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--white);
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 2001;
    position: relative;
}

.logo img{
    height:25px;
}

.desktop-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.desktop-menu .nav-link {
    font-weight: 600;
}

.nav-link {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.nav-link:hover,
.active {
    color: var(--gold);
}

.link_mercado {
    border: 1px solid var(--gold-dark);
    padding: 0.4rem 0.9rem;
    letter-spacing: 0.05rem;
    color: var(--gold-dark);
}

.link_mercado:hover {
    border: 1px solid var(--gold-dark);
    background-color: var(--gold-dark);
    color: var(--white);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 2001;
    width: 30px;
    height: 28px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gold);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    margin: 0.2rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-weight: 300;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* --- Typography & Commons --- */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: -0.01em;
}

p {
    font-weight: 400;
    letter-spacing: 0.01em;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    display: block;
}

.section-title-home {
    font-size: clamp(1.9rem, 3.5vw, 3.8rem);
    line-height: 1;
    margin-bottom: 2rem;
    max-width: 1000px;
}

.section-title {
    font-size: clamp(1.6rem, 2.5vw, 1.9rem);
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 800px;
}

.section-title-xl {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    max-width: 900px;
}

.section-text-abstract {
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.2;
    opacity: 0.6 !important;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.6 !important;
    max-width: 700px;
    margin-bottom: 2rem;
}

.subrayado {
    text-decoration: underline;
    text-decoration-color: var(--gold-dark);
    /* Aquí pones tu color (ej: el dorado de CASTELVIER) */
    text-decoration-thickness: 1px;
    /* Opcional: para controlar el grosor de la línea */
    text-underline-offset: 4px;
    /* Opcional: para separar la línea del texto */
}

.color-gold-dark {
    color: var(--gold-dark);
}


.content-section {
    padding: 7rem 5%;
}

.content-section.dark {
    background: var(--black);
    color: var(--white);
}

.content-section.light {
    background: var(--cream);
    color: var(--black);
}

.content-section.mid {
    background: #111;
    color: var(--white);
}

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

.btn-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 8px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    border-bottom-color: var(--gold);
    opacity: 0.8;
}

.btn-link::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.1rem;
    line-height: 0.5;
}

.label-paginas {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.5;
    display: block;
}

.btn-link-paginas {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.btn-link-paginas:hover {
    border-bottom-color: var(--gold);
    opacity: 0.8;
}

/* --- Sections --- */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    position: relative;
    padding-top: 5rem;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    padding: 0 0px;
    margin-top: 6vh;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 3rem auto;
    opacity: 0.6;
}

.text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.text-grid .num {
    font-family: 'Playfair Display', serif; 
    font-size: 3rem; 
    color: var(--gold); 
    opacity: 0.4; 
    line-height: 1; 
    margin-bottom: 1.2rem;
}

.text-grid h3 {
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 0.9rem; 
    font-weight: 500; 
    letter-spacing: 0.05em; 
    margin-bottom: 1rem; 
    text-transform: uppercase;
}

.text-grid .tit {
    display: block; 
    font-weight: 600; 
    margin-bottom: 0.3rem; 
    font-size: 1.1rem;
}

.text-grid .desc {
    font-size: 0.95rem; 
    line-height: 1.65;
    font-weight: 300;
}

.text-grid ul {
    list-style:none; 
    padding: 0;
}

.text-grid ul li {
    margin-bottom: 2rem; 
    padding-left: 1.5rem; 
    border-left: 2px solid var(--gold); 
    color: var(--black);
}

.text-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.list-item {
    padding-left: 1.5rem;
    border-left: 1px solid var(--gold);
    font-weight: 500;
    color: var(--white);
}

.list-item strong {
    color: var(--gold);
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.target-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.target-list {
    list-style: none;
}

.target-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    font-weight: 500;
    position: relative;
}

.target-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.cta-section {
    background: var(--cream);
    color: var(--black);
    text-align: center;
    padding: 8rem 5%;
}

.cta-button-main {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid rgba(13, 13, 13, 0.3);
    color: var(--black);
    text-decoration: none;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin-top: 2rem;
}

.cta-button-main:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ── STAT BLOCKS ── */
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-top: 5rem;
}

.stat-block {
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.stat-block:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 0.85rem;
    opacity: 0.55;
    line-height: 1.6;
}

/* --- FORM Styles --- */
.form-section {
    padding: 6rem 5%;
    background: #0a0a0a;
    /* Ligeramente más oscuro que el fondo normal */
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: clamp(0.55rem, 0.6vw, 0.65rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

form {
    width: 100%;
    max-width: 1000px;
    border: 1px solid #333;
    padding: clamp(20px, 4vw, 40px);
}

.form-input,
.form-select,
.form-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #111;
    color: var(--white);
    padding: clamp(0.4rem, 0.8vw, 0.8rem);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    font-weight: 400;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-select option {
    background: var(--black);
    color: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-input {
    margin-top: 0.3rem;
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.8rem;
    line-height: 2em;
    font-weight: 500;
    color: #999;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.checkbox-label a:hover {
    border-bottom-color: var(--gold);
}

.form-submit {
    margin-top: 3rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem 3rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    font-weight: 600;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--black);
}

#confirm_send{
    text-align: center;
    font-size: 0.9rem;
    padding: 0.8rem 0px;
    font-weight: 600;
    color: var(--gold-dark);
}
.warning {
    border-bottom: 1px solid #c00 !important;
}

.form-note{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    line-height: 1.68em;
    font-weight: 500;
    color: #999;
}

.form-note-icon{
    flex-shrink: 0;
    margin-top: 2px;
    color: #888;    
}

.form-note-text{
    font-weight: 400;
}



/* Contenedor principal de la sección */
.prefooter-barrios {
    padding-top: 0px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.prefooter-barrios .container-grid {
    display: grid;
    gap: 30px;
    padding: 0 20px;
    max-width: 1300px;
    margin: 0 auto;
    /* Responsive: 1 columna en móvil */
    grid-template-columns: repeat(1, 1fr);
}

/* Tablets (2 columnas) */
@media (min-width: 768px) {
    .prefooter-barrios .container-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Escritorio (4 columnas) */
@media (min-width: 1024px) {
    .prefooter-barrios .container-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Estilo Base de la Card */
.prefooter-barrios .card-barrio {
    background: #111; /* Negro suave para contraste */
    border: 1px solid #222;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative; /* Necesario para la cinta "Próximamente" */
    overflow: hidden; /* Corta la cinta para que no salga de la card */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}


/* Nombre del Barrio (Arriba) */
.prefooter-barrios .card-barrio .barrio {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37; /* Dorado */
    margin-bottom: 12px;
    font-weight: 600;
}

/* Título */
.prefooter-barrios .card-barrio .titulo {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 12px;
    min-height: 2.6em; /* Mantiene botones alineados */
}

/* Abstract */
.prefooter-barrios .card-barrio .abstract {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
    font-weight: 500;
    margin-bottom: 12px;
    flex-grow: 1;
}

/* Botón / Enlace */
.prefooter-barrios .card-barrio a.btn-link {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4em;
    font-weight: 700;
    border-bottom: 1px solid #111;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.prefooter-barrios .card-barrio a.btn-link:hover {
    color: #D4AF37;
    border-bottom: 1px solid #D4AF37;
}

/* --- ESTADO DESACTIVADO (DISABLED) --- */
.prefooter-barrios .card-barrio.disabled {
    filter: grayscale(100%);
    pointer-events: none; /* Bloquea clics y hovers */
    user-select: none;
    border-color: #222;
}

.prefooter-barrios .card-barrio.disabled .barrio,
.prefooter-barrios .card-barrio.disabled .titulo,
.prefooter-barrios .card-barrio.disabled .abstract,
.prefooter-barrios .card-barrio.disabled a.btn-link {
    color: #444 !important;
    border-color: #444 !important;
}

/* Etiqueta "Próximamente" en diagonal */
.prefooter-barrios .card-barrio.disabled::after {
    content: "PRÓXIMAMENTE";
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #D4AF37;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 12px 40px;
    transform: rotate(35deg);
    z-index: 10;
    letter-spacing: 0.7px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* --- Footer Styles Extended --- */
footer {
    padding: 5rem 5% 3rem;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-logo {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    font-weight: 400;
    max-width: 350px;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #999 !important;
}

.footer-links .cap {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-legal-block {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    padding-bottom: 3.6rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilos Footer Bottom y Redes Sociales */

.footer-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateY(-3px);
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.rgpd-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    opacity: 0.4;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.fixed-bottom-bar.visible {
    transform: translateY(0);
}

.bar-text {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.bar-button {
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--black);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bar-button:hover {
    color: var(--white);
    background: var(--black);
}

/* Whatsapp ****/

.whatsapp-fixed-right {
    position: fixed;
    right: 25px;
    bottom: 100px;
    /* Vuela sobre la franja fija */
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;

    /* Estado inicial (Oculto) */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.6) translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-fixed-right svg {
    width: 28px;
    height: 28px;
}

/* Estado Activo (Cuando pasa el tiempo) */
.whatsapp-fixed-right.is-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

/* Pulso animado */
.whatsapp-fixed-right::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-fixed-right:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Fin Whatsapp *****/

/* Puntos *************************************/

/* Contenedor de puntos */
.scroll-dots-left {
    bottom: 50px;
    /* Ajusta la altura a tu gusto */
    left: 5%;
    /* Alineado al margen izquierdo de tu contenedor */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
    margin-top: 30px;
}

/* Estilo base de los puntos */
.dot {
    display: block;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: dot-flow 2s infinite;
}

/* Tamaños decrecientes de más grueso a menos */
.d1 {
    width: 10px;
    height: 2px;
    animation-delay: 0s;
}

.d2 {
    width: 6px;
    height: 2px;
    animation-delay: 0.2s;
}

.d3 {
    width: 3px;
    height: 2px;
    animation-delay: 0.4s;
}

.d4 {
    width: 1px;
    height: 1px;
    animation-delay: 0.6s;
}

/* Animación de flujo elegante */
@keyframes dot-flow {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Fin Puntos *************************************/

/* Estilos Acreditaciones con Logos */
.acreditaciones-section {
    padding: 8rem 5%;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.acreditaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.acreditacion-item {
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Contenedor del Logo */
.logo-wrapper {
    height: 60px;
    /* Altura fija para alinear todos los logos */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.acred-logo {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin: 0 auto;
    /* Filtro para hacer los logos blancos y sutiles */
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.4s ease;
}

.acred-header {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.acred-org {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.acred-id {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.acred-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.5;
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 0px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ── HERO INTERIOR ── */
.hero-interior {
    min-height: 70vh;
    display: flex;
    /*align-items: flex-end;*/
    padding: 0 5% 5rem;
    background: var(--black);
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.hero-interior::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

/* línea vertical decorativa */
.hero-interior::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.12) 30%, rgba(212, 175, 55, 0.12) 70%, transparent);
    pointer-events: none;
}

.hero-interior-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: 9rem;
}

.hero-interior-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    margin-top: 7rem;
}

.hero-right-block {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 0.5rem;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    padding-left: 3rem;
}

.hero-right-block p {
    font-size: 1rem;
    opacity: 0.6;
    line-height: 1.75;
}

.hero-tag {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.1rem 0rem;
    font-weight: 600;
}

/* ── MANIFIESTO / STATEMENT CENTRAL ── */
.statement-section {
    background: var(--white);
    padding: 6rem 5%;
    text-align: center;
    color: #000;
}

.statement-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 300;
    color: var(--black);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.statement-section p {
    color: rgba(13, 13, 13, 0.65);
    font-size: 1rem;
    max-width: 680px;
    margin: 2rem auto 0;
    line-height: 1.7;
}

/* ── DOLOR / PAIN POINTS ── */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
}

.pain-item {
    background: var(--black);
    padding: 3rem;
    position: relative;
    transition: background 0.3s ease;
}

.pain-item:hover {
    background: #131313;
}

.pain-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.12);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
    user-select: none;
}

.pain-icon {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.8rem;
    opacity: 0.6;
}

.pain-item h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.pain-item p {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.7;
}

.pain-item .pain-solution {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    font-size: 0.82rem;
    color: var(--gold-dark);
    line-height: 1.6;
    font-weight: 500;
}

.pain-item .pain-solution::before {
    content: 'Lo que hacemos → ';
    font-weight: 600;
}

/* ── PULL QUOTE ── */
.pull-quote {
    border-left: 2px solid var(--gold);
    padding: 2rem 0 2rem 3rem;
    margin: 3rem 0;
}

.pull-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    opacity: 0.9;
    line-height: 1.4;
    max-width: 680px;
    font-weight: 500;
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

.pull-quote-relacion .section-text{
    font-family: 'Plus Jakarta Sans', sans-serif !important; 
    font-size: 1.0rem;
}

.pull-quote-relacion .section-text strong {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.6rem; 
    color: var(--white);
    font-weight:400;
    line-height: 1em;
}

.pull-quote-relacion .section-text .btn-link {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}



/* ── BENEFICIOS CONCRETOS ── */
.benefit-row {
    display: grid;
    grid-template-columns: 64px 1fr 1fr;
    gap: 2rem 3rem;
    align-items: start;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-row:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-index {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1.2;
    padding-top: 0.2rem;
}

.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.8rem;
}

.benefit-tag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    padding: 0.25rem 0.7rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.benefit-desc {
    font-size: 0.88rem;
    opacity: 0.55;
    line-height: 1.75;
}

.benefit-result {
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.04);
    border-left: 2px solid rgba(212, 175, 55, 0.25);
}

.benefit-result-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.benefit-result p {
    font-size: 0.88rem;
    opacity: 0.8;
    line-height: 1.65;
}

/* ── SIN PSI vs CON PSI ── */
.versus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.12);
    margin-top: 3rem;
}

.versus-col {
    padding: 0;
}

.versus-header {
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.versus-header-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

.versus-col.without .versus-header {
    background: rgba(255, 255, 255, 0.02);
}

.versus-col.without .versus-header-label {
    color: rgba(255, 255, 255, 0.3);
}

.versus-col.with .versus-header {
    background: rgba(212, 175, 55, 0.06);
    border-left: 1px solid rgba(212, 175, 55, 0.12);
}

.versus-col.with .versus-header-label {
    color: var(--gold);
}

.versus-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.versus-dot.red {
    background: rgba(220, 80, 80, 0.7);
}

.versus-dot.gold {
    background: var(--gold);
}

.versus-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.86rem;
    line-height: 1.6;
    font-weight: 400;
}

.versus-col.with .versus-item {
    border-left: 1px solid rgba(212, 175, 55, 0.08);
}

.versus-item-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
    font-size: 0.7rem;
}

.versus-item.neg .versus-item-icon {
    color: rgba(220, 80, 80, 0.6);
}

.versus-item.pos .versus-item-icon {
    color: var(--gold);
}

.versus-item.neg {
    opacity: 0.5;
}

.versus-item.pos {
    opacity: 0.8;
}

/* ── ROI / VALOR ECONÓMICO ── */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: rgba(212, 175, 55, 0.08);
    margin-top: 3rem;
}

.roi-item {
    background: var(--cream);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.roi-item-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.roi-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.roi-item p {
    font-size: 0.86rem;
    color: rgba(13, 13, 13, 0.6);
    line-height: 1.7;
}

.roi-item .roi-figure {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-dark);
    margin-top: auto;
    padding-top: 2rem;
    line-height: 1;
}

.roi-item .roi-figure-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-top: 0.4rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* ── GARANTÍAS ── */
.garantia-list {
    margin-top: 2.5rem;
}

.garantia-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.garantia-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.garantia-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0.5;
    min-width: 36px;
    padding-top: 0.2rem;
    font-weight: 300;
}

.garantia-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    color: var(--gold-dark);
}

.garantia-content p {
    font-size: 0.85rem;
    opacity: 0.5;
    line-height: 1.7;
}

/* ── PROCESO VISUAL ── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 3.5rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.process-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 300;
    background: var(--black);
    transition: all 0.3s ease;
}

.process-step:hover .process-circle {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.process-step h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.process-step p {
    font-size: 0.78rem;
    opacity: 0.55;
    line-height: 1.6;
    color: var(--white);
    font-weight: 500;
}

/* ── TESTIMONIOS ── */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    margin-top: 3rem;
}

.testimonial-item {
    background: #111;
    padding: 3rem 2.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.testimonial-stars span {
    color: var(--gold);
    font-size: 0.7rem;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.65;
    opacity: 0.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.2rem;
}

.testimonial-name {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.testimonial-role {
    font-size: 0.68rem;
    opacity: 0.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* ── TABLA COMPARATIVA ── */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2.5rem;
    font-size: 0.88rem;
}

.compare-table thead tr {
    border-bottom: 1px solid #ccc;
}

.compare-table th {
    text-align: left;
    padding: 1rem 1.5rem 1rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.compare-table th:not(:first-child) {
    padding-left: 1.5rem;
}

.compare-table td {
    padding: 1.2rem 1.5rem 1.2rem 0;
    vertical-align: top;
    opacity: 0.7;
    line-height: 1.55;
    border-bottom: 1px solid #ccc;
}

.compare-table td:not(:first-child) {
    padding-left: 1.5rem;
    font-weight: 500;
}

.compare-table td:first-child {
    font-weight: 400;
    opacity: 1;
    color: var(--white);
}

.compare-table .vs-no {
    color: rgba(255, 80, 80, 0.7);
}

.compare-table .vs-yes {
    color: var(--gold);
}


/* =========================
   RESPONSIVE TABLE
========================= */

@media (max-width: 768px) {

.compare-table {
    font-size: 0.85rem;
}

.compare-table thead {
    display: none;
}

.compare-table,
.compare-table tbody,
.compare-table tr,
.compare-table td {
    display: block;
    width: 100%;
}

.compare-table tr {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.8rem;
}

.compare-table td {
    padding: 0.6rem 0;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: right;
}

.compare-table td:first-child {
    font-weight: 600;
    text-align: left;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.compare-table td::before {
    content: attr(data-label);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    text-align: left;
    margin-right: 1rem;
}

.compare-table td:first-child::before {
    display: none;
}

}

/* ── TIMELINE ── */
.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.timeline-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    padding-top: 0px;
    line-height: 1.0em;
}

.timeline-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.timeline-content p {
    font-size: 0.85rem;
    opacity: 0.55;
    line-height: 1.65;
}

/* ── ACCORDION / PREGUNTAS ── */
.accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.accordion-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-question {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 400;
}

.accordion-icon {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 200;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
}

.accordion-icon.open {
    transform: rotate(45deg);
}

.accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-body.open {
    max-height: 600px;
}

.accordion-body p {
    opacity: 0.6;
    padding-bottom: 2rem;
    max-width: 700px;
}

/* ── MAPA ZONAS (decorativo) ── */
.zone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 2.5rem;
}

.zone-item {
    background: var(--black);
    padding: 2rem 1.8rem;
    transition: background 0.3s ease;
    cursor: default;
}

.zone-item:hover {
    background: #161616;
}

.zone-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.zone-district {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    font-weight: 900;
    margin-bottom: 1rem;
}

.zone-price {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ── ÍNDICE DE FASES (sticky sidebar) ── */
.phase-index {
    position: sticky;
    top: 90px;
    align-self: start;
}

.phase-index-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    display: block;
}

.phase-index-list {
    list-style: none;
}

.phase-index-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}

.phase-index-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phase-index-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.4);
    min-width: 24px;
    padding-top: 0.1rem;
    transition: color 0.2s;
}

.phase-index-text {
    font-size: 0.78rem;
    opacity: 0.35;
    line-height: 1.4;
    transition: opacity 0.2s;
}

.phase-index-item:hover .phase-index-num {
    color: var(--gold);
}

.phase-index-item:hover .phase-index-text {
    opacity: 0.8;
    font-weight: 500;
}

.phase-index-item.active .phase-index-num {
    color: var(--gold);
}

.phase-index-item.active .phase-index-text {
    opacity: 1;
    font-weight: 600;
}

/* ── FASES DEL PROCESO (bloque principal) ── */
.phase-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 6rem;
    align-items: start;
}

.phases-content {
    min-width: 0;
}

.phase-block {
    padding: 4.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    scroll-margin-top: 100px;
}

.phase-block:first-child {
    padding-top: 0;
}

.phase-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.phase-num-big {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 300;
    color: var(--gold);
    opacity: 0.18;
    line-height: 0.85;
    flex-shrink: 0;
    user-select: none;
}

.phase-tag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
    padding: 0.25rem 0.7rem;
    margin-bottom: 0.9rem;
    font-weight: 500;
}

.phase-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0;
}

.phase-intro {
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 2.5rem;
}

/* Sub-pasos dentro de cada fase */
.phase-steps {
    margin-bottom: 2.5rem;
}

.phase-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1.2rem;
    margin-bottom: 0;
    padding: 1.6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    align-items: start;
}

.phase-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phase-step-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.phase-step-content h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.phase-step-content p {
    font-size: 0.85rem;
    opacity: 0.5;
    line-height: 1.7;
}

/* Bloque de valor dentro de la fase */
.phase-value {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(212, 175, 55, 0.04);
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    padding: 1.8rem 2rem;
    margin-top: 2rem;
}

.phase-value-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    opacity: 0.8;
}

.phase-value-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: block;
    font-weight: 400;
}

.phase-value-text {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.7;
}

.phase-value-text strong {
    color: var(--white);
    font-weight: 400;
}

/* Entregable de la fase */
.phase-deliverable {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.phase-deliverable-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.6rem;
    display: block;
}

.phase-deliverable p {
    font-size: 0.85rem;
    opacity: 0.55;
    line-height: 1.6;
}

/* ── VALORES CENTRALES ── */
.valor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(212, 175, 55, 0.08);
    margin-top: 3rem;
}

.valor-item {
    background: var(--black);
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.valor-item:hover {
    background: #131313;
}

.valor-glyph {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.1);
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    user-select: none;
    pointer-events: none;
}

.valor-tag {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.valor-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.valor-item p {
    font-size: 0.88rem;
    opacity: 0.55;
    line-height: 1.75;
    max-width: 440px;
}

.valor-item .valor-linea {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

/* ── COMPROMISOS (del acompañamiento) ── */
.acomp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.acomp-item {
    position: relative;
}

.acomp-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 1rem;
}

.acomp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.acomp-text {
    font-size: 0.86rem;
    line-height: 1.7;
}

.acomp-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
    margin-bottom: 1.2rem;
}

/* ── TABLA FASES RESUMEN ── */
.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    font-size: 0.86rem;
}

.summary-table thead tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-table th {
    text-align: left;
    padding: 1rem 1.5rem 1rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.summary-table td {
    padding: 1.3rem 1.5rem 1.3rem 0;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    opacity: 0.65;
    line-height: 1.55;
    font-weight: 400;
}

.summary-table td:first-child {
    opacity: 1;
    font-weight: 400;
    white-space: nowrap;
}

.summary-table td .td-phase {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 0.2rem;
}

.summary-table td .td-label {
    font-size: 0.6rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--gold);
}


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

@media (max-width: 768px) {

.summary-table {
    font-size: 0.85rem;
}

.summary-table thead {
    display: none;
}

.summary-table,
.summary-table tbody,
.summary-table tr,
.summary-table td {
    display: block;
    width: 100%;
}

.summary-table tr {
    margin-bottom: 1.6rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.summary-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.6rem 0;
    border: none;
    text-align: right;
}

.summary-table td:first-child {
    display: block;
    text-align: left;
    margin-bottom: 0.5rem;
    white-space: normal;
}

.summary-table td::before {
    content: attr(data-label);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    text-align: left;
    margin-right: 1rem;
}

.summary-table td:first-child::before {
    display: none;
}

}

.td-tag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold);
    padding: 0.18rem 0.55rem;
    opacity: 0.8;
}

.td-check {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ── RAZONES CTA STRIP ── */
.reasons-strip {
    background: rgba(212, 175, 55, 0.05);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0;
}

.reasons-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.reason-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(212, 175, 55, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.reason-item:last-child {
    border-right: none;
}

.reason-icon {
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin-bottom: 0.4rem;
}

.reason-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.reason-text {
    font-size: 0.78rem;
    opacity: 0.6;
    line-height: 1.6;
    font-weight: 400;
}

/* ── CTA CARDS ── */
.cta-cards-section {
    padding: 7rem 5%;
    background: var(--black);
}

.cta-cards-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-cards-header {
    margin-bottom: 4rem;
}

.cta-cards-header h2 {
    max-width: 640px;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(212, 175, 55, 0.08);
}

/* tarjeta grande ocupa toda la anchura */
.cta-card-featured {
    grid-column: 1 / -1;
}

.cta-card {
    background: #0f0f0f;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.cta-card:hover {
    background: #131313;
}

.cta-card-featured {
    background: #111;
    padding: 4rem 3.5rem;
}

.cta-card-featured:hover {
    background: #151515;
}

.cta-card-bg {
    position: absolute;
    right: 2rem;
    bottom: -1rem;
    font-family: 'Playfair Display', serif;
    font-size: 9rem;
    font-weight: 300;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.06);
    user-select: none;
    pointer-events: none;
}

.cta-card-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 300;
    opacity: 0.8;
}

.cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 300;
    line-height: 1.3;
    max-width: 520px;
}

.cta-card-featured h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    max-width: 680px;
}

.cta-card p {
    font-size: 0.88rem;
    opacity: 0.5;
    line-height: 1.75;
    max-width: 480px;
}

.cta-card-featured p {
    max-width: 580px;
}

.cta-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.85rem 2rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.cta-card-action:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.cta-card-action-arrow {
    font-size: 1rem;
    line-height: 0.5;
    transition: transform 0.3s;
}

.cta-card-action:hover .cta-card-action-arrow {
    transform: translateX(4px);
}

.cta-card-tag {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--black);
    padding: 0.25rem 0.7rem;
    font-weight: 500;
    align-self: flex-start;
}

/* ── DATOS DE CONTACTO DIRECTO ── */
.contact-direct {
    background: var(--cream);
    color: var(--black);
    padding: 7rem 5%;
}

.contact-direct-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-direct h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.contact-direct p {
    font-size: 0.95rem;
    opacity: 0.65;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(13, 13, 13, 0.1);
    text-decoration: none;
    color: var(--black);
    transition: opacity 0.2s;
}

.contact-channel:last-child {
    border-bottom: 1px solid rgba(13, 13, 13, 0.1);
}

.contact-channel:hover {
    opacity: 0.7;
}

.contact-channel-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 148, 31, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-channel-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-dark);
}

.contact-channel-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
    display: block;
}

.contact-channel-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
}

.contact-channel-note {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* horario box */
.schedule-box {
    border: 1px solid rgba(184, 148, 31, 0.2);
    padding: 2.5rem;
    margin-top: 3rem;
}

.schedule-box-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    display: block;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(13, 13, 13, 0.07);
    font-size: 0.85rem;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-day {
    opacity: 0.55;
}

.schedule-time {
    font-weight: 400;
    color: var(--black);
}

.schedule-closed {
    opacity: 0.3;
    font-style: italic;
}

/* ── PREGUNTAS PREVIAS AL CONTACTO ── */
.prefaq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.04);
    margin-top: 3rem;
}

.prefaq-item {
    background: #111;
    padding: 3rem 2.5rem;
}

.prefaq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.prefaq-a {
    font-size: 0.85rem;
    opacity: 0.5;
    line-height: 1.7;
}

.prefaq-gold {
    color: var(--gold);
    margin-right: 0.4rem;
}

/* ── FORMULARIO ── */
.form-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 7rem;
    align-items: start;
}

.form-sidebar {
    position: sticky;
    top: 100px;
}

.form-sidebar h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.form-sidebar p {
    font-size: 0.9rem;
    opacity: 0.5;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.form-promise {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.form-promise-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-promise-icon {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.form-promise-text {
    font-size: 0.82rem;
    opacity: 0.8 !important;
    line-height: 1.6;
}

.form-promise-text strong {
    color: var(--white);
    font-weight: 600;
    color: var(--gold);
}

.content-legal h2 {
    font-size: 1.3rem;
    color: var(--gold);
}

.content-legal .section-text, .content-legal table td {
    font-size: 0.9rem;
}

.content-legal .link {
    color: var(--gold-dark);
}
.content-legal .link:hover {
    color: var(--gold);
}



            /* --- Estilos Base (Escritorio) --- */
            .price-table { 
                width: 100%; 
                border-collapse: collapse; 
                margin: 1.8rem 0; 
                font-size: 0.82rem; 
            }

            .price-table thead tr { 
                border-bottom: 1px solid rgba(212,175,55,0.18); 
            }

            .price-table th {
                text-align: left; 
                padding: 0.7rem 0.8rem 0.7rem 0;
                font-size: 0.57rem; 
                letter-spacing: 0.15em; 
                text-transform: uppercase;
                color: var(--gold); 
                font-weight: 300;
            }

            .price-table td {
                padding: 0.9rem 0.8rem 0.9rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.04);
                opacity: 0.56; 
                line-height: 1.45; 
                vertical-align: top;
                text-align: left; /* Aseguramos alineación izquierda base */
            }

            .price-table td:first-child { 
                opacity: 0.86; 
                color: var(--white); 
            }

            .price-table .hi { 
                color: var(--gold); 
                opacity: 1 !important; 
                font-weight: 500; 
            }

            /* --- Ajustes Responsive (Móvil) --- */
            @media (max-width: 600px) {
                .price-table thead {
                    display: none; /* Ocultamos cabecera horizontal */
                }

                .price-table tr {
                    display: block;
                    margin-bottom: 2rem;
                    border-bottom: 1px solid rgba(212,175,55,0.2);
                    padding-bottom: 1rem;
                }

                .price-table td {
                    display: block; /* Cada celda ocupa toda la línea */
                    width: 100%;
                    padding: 0.5rem 0;
                    border: none;
                    text-align: left; /* Todo alineado a la izquierda */
                }

                /* Insertamos el título de la columna arriba del dato */
                .price-table td::before {
                    content: attr(data-label);
                    display: block; /* Forzamos que la etiqueta esté arriba */
                    font-size: 0.55rem;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    color: var(--gold);
                    opacity: 0.7;
                    margin-bottom: 0.2rem;
                }

                /* Ajuste especial para la primera celda (el nombre del servicio) */
                .price-table td:first-child {
                    font-size: 1rem;
                    margin-bottom: 0.4rem;
                }
            }



        /* notice box */
        .notice-box {
            background: rgba(212,175,55,0.04); border-left: 2px solid rgba(212,175,55,0.28);
            padding: 1.2rem 1.6rem; margin: 1.8rem 0;
        }
        .notice-box p { font-size: 0.83rem; opacity: 0.56; line-height: 1.75; }
        .notice-box p strong { color: var(--white); font-weight: 400; }





/* landing */


    /* Grid de la sección */
    #landing-barrios .hero-interior-grid {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 4rem;
        align-items: start;
        position: relative;
    }

    /* Contenedor del formulario para habilitar el Sticky */
    #landing-barrios #formulario-landing {
        height: 100%;
    }

    #landing-barrios #sidebar-sticky-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 2rem; /* Se queda a 2rem del techo al scrollear */
    }

    #landing-barrios #frmContacto {
        width: 100%;
        max-width: 400px;
    }

    #landing-barrios .section-text {
        opacity: 0.7 !important;
    }
    #landing-barrios h3 {
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 0.4rem;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
        #landing-barrios .hero-interior-grid {
            grid-template-columns: 1fr;
        }
        #landing-barrios #sidebar-sticky-wrapper {
            position: relative;
            top: 0;
        }
        #landing-barrios #frmContacto {
            max-width: 100% !important;
        }

    }

#landing-barrios .form-grid {
    display: block !important;
}

#landing-barrios .form-group{
    width: 100% !important;
    margin-bottom: 1rem;
}

#landing-barrios .form-submit {
    margin-top: 1rem;
}

#landing-barrios .form-note {
    margin-top: -20px;
}





/* fin landing */






/* Responsive */

@media (max-width: 1100px) {
    .phase-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .phase-index {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .text-grid,
    .target-grid,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

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

    .stat-block {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .stat-block:nth-child(2) {
        border-right: none;
    }

    .stat-block:nth-child(3) {
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .content-section {
        padding: 5rem 5%;
    }

    .hero-contact-grid,
    .contact-direct-inner,
    .form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-contact-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        padding-top: 2rem;
    }

    .cta-cards-grid {
        grid-template-columns: 1fr;
    }

    .cta-card-featured {
        grid-column: 1;
    }

    .reasons-inner {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-sidebar {
        position: static;
    }

    .text-grid-3,
    .hero-interior-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pain-grid,
    .versus-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .roi-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .benefit-row {
        grid-template-columns: 48px 1fr;
    }

    .benefit-result {
        grid-column: 2;
    }

    .hero-right-block {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        padding-top: 2rem;
    }

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

    .acreditaciones-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .compare-table {
        font-size: 0.8rem;
    }

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

    .acomp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .acreditaciones-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .acred-header,
    .acred-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {

    section {
        padding: 40px 50px !important;    
    }

    #home{
        padding-top: 120px !important;
    }

    .logo img{
        height:20px;
    }

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

    .stat-block {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-interior {
        min-height: auto;
        padding-bottom: 3rem;
    }

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

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

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .fixed-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .summary-table {
        font-size: 0.78rem;
    }

    .reasons-inner {
        grid-template-columns: 1fr;
    }

    .reason-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    }

    .reason-item:last-child {
        border-bottom: none;
    }

    .hero-bg-word {
        display: none;
    }

    footer {
        text-align: center;
    }
    .footer-desc {
        max-width: 100%;
    }
}