/**
 * Custom CSS - GA Interiorismo
 *
 * Estructura:
 * 1. Variables y fuentes
 * 2. General / Body
 * 3. Navbar
 * 4. Hero
 * 5. Secciones
 * 6. Footer
 * 7. Formulario
 * 8. Utilidades
 * 9. Responsive
 */

/* ================================================
   1. VARIABLES Y FUENTES
   ================================================ */
:root {
    --color-primary: #30373e;
    --color-secondary: #666666;
    --color-accent: #e1b67e;
    --color-accent-hover: #d4a56b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f8f6;
    --color-text: #30373e;
    --color-text-light: #999999;
    --color-border: #e5e5e5;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --navbar-height: 90px;
    --topbar-height: 38px;
    --button-radius: 999px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
}

/* body-padding: para páginas sin hero (navbar fija) */
.body-padding {
    padding-top: calc(var(--topbar-height) + var(--navbar-height) + 30px);
}

/* ================================================
   2. HEADER Y NAVBAR
   ================================================ */
.site-header {
    z-index: 1200;
}

.ga-topbar {
    height: var(--topbar-height);
    color: #171717;
    background: var(--color-accent);
}

.ga-topbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ga-topbar-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ga-topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.ga-topbar-contact a:hover {
    color: inherit;
    opacity: 0.68;
}

.ga-topbar-contact svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.ga-topbar-contact a:first-child svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.94);
    min-height: var(--navbar-height);
    transition: all 0.3s ease;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(18px);
    z-index: 1200;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    align-items: center;
}

.navbar-brand {
    padding: 10px 0;
}

.navbar-logo {
    max-height: 68px;
    width: auto;
}

.navbar .nav-link {
    position: relative;
    color: #111111;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.65rem 0.95rem;
    transition: color 0.2s ease;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    right: 0.95rem;
    bottom: 0.35rem;
    left: 0.95rem;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.navbar .nav-link:hover {
    color: var(--color-accent);
}

.navbar .nav-link.active {
    color: var(--color-accent);
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    transform: scaleX(1);
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    padding: 0.75rem 0;
    margin-top: 0.9rem;
}

.navbar .dropdown-item {
    position: relative;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.7rem 1.25rem;
    color: #111111;
    transition: all 0.2s ease;
}

.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    bottom: 0.7rem;
    left: 0;
    width: 2px;
    background: var(--color-accent);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background-color: var(--color-bg-alt);
    color: var(--color-accent);
}

.navbar .dropdown-item:hover::before,
.navbar .dropdown-item.active::before {
    transform: scaleY(1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    z-index: 1250;
}

.offcanvas-backdrop {
    z-index: 1240;
}

/* ================================================
   3. HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1a1a1a;
    background-image: url('../img/paginas/home/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 67px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--color-accent-hover);
    color: #ffffff;
}

/* Flecha animada en botones */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-arrow,
.btn-dark-outline:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-estudio {
    background-image: url('../img/paginas/home/hero.jpg');
}

.hero-diseno {
    background-image: url('../img/paginas/home/hero.jpg');
}

.hero-mobiliario {
    background-image: url('../img/paginas/home/hero.jpg');
}

/* ================================================
   4. SECCIONES
   ================================================ */
.section-overtitle {
    display: block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-h1 {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

/* CTA / Slogan */
.section-cta {
    background-color: #30373e;
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.section-cta-parallax {
    background-image: url('../img/paginas/home/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.section-cta-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 55, 62, 0.8);
}

.section-cta-parallax .container {
    z-index: 2;
}

.section-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-cta p {
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 2rem;
}

.section-cta .btn-hero {
    margin-top: 0;
}

/* Sello de trabajo */
.stamp-icon {
    width: 70px;
    height: 70px;
}

.stamp-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stamp-text {
    font-size: 0.9rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Compromiso */
.commitment-list {
    list-style: none;
    padding-left: 0;
}

.commitment-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Cards proyecto */
.card-project {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-project-body {
    flex: 1;
}

.card-project-img {
    width: 100%;
    height: auto;
}

.card-project-body {
    background-color: var(--color-bg-alt);
    padding: 1.2rem;
}

.card-project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.card-project-text {
    font-size: 0.9rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Lista check inline */
.check-list-inline {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem 1.5rem;
}

.check-list-inline li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.check-list-inline li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Pasos proceso */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content {
    text-align: center;
}

.step-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

/* Placeholder para imágenes (quitar cuando se usen imágenes reales) */
.placeholder-img {
    background-color: #e9ecef;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* ================================================
   5. FOOTER
   ================================================ */
.footer {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: clamp(4rem, 7vw, 7rem) 0 1.6rem;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 0.7fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.footer-brand h2 {
    max-width: none;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}

.footer-brand p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.footer-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-title {
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1.35rem;
}

.footer-text {
    font-size: 0.92rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-text a,
.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-text a:hover,
.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-link svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: currentColor;
}

.footer-contact-phone svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

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

.footer-links a {
    font-size: 0.92rem;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: clamp(3rem, 5vw, 5rem);
    padding-top: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.footer-legal p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.78rem;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

.ga-whatsapp-float {
    position: fixed;
    right: clamp(1rem, 2vw, 1.75rem);
    bottom: clamp(1rem, 2vw, 1.75rem);
    z-index: 1150;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #25d366;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ga-whatsapp-float:hover {
    color: #ffffff;
    background: #1fbd5a;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.ga-whatsapp-float:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
}

.ga-whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* ================================================
   6. FORMULARIO
   ================================================ */
.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.2rem rgba(200, 169, 126, 0.2);
}

/* ================================================
   7. BOTONES
   ================================================ */
/* Botón oscuro tipo outline (Saber más) */
.btn-dark-outline {
    display: inline-block;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-dark-outline:hover {
    background-color: #1a2028;
    color: #ffffff;
}

.btn-dark-outline .btn-less-text {
    display: none;
}

.btn-dark-outline[aria-expanded="true"] .btn-more-text {
    display: none;
}

.btn-dark-outline[aria-expanded="true"] .btn-less-text {
    display: inline;
}

.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
    border-radius: var(--button-radius);
    padding-left: 1.55rem;
    padding-right: 1.55rem;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #ffffff;
}

/* ================================================
   8. RECONSTRUCCION VISUAL - PILOTO HOME
   ================================================ */
.ga-home {
    background: #ffffff;
    color: #141414;
    overflow: hidden;
}

.ga-home h1,
.ga-home h2,
.ga-home h3 {
    color: #111111;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.ga-home h1 {
    font-size: clamp(3.3rem, 7vw, 7.2rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    max-width: 780px;
}

.ga-home h2 {
    font-size: clamp(2.4rem, 4.8vw, 5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.ga-home h3 {
    font-size: clamp(1.7rem, 2.5vw, 2.7rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.ga-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.ga-kicker::before {
    content: '';
    display: inline-block;
    width: 42px;
    height: 1px;
    background: currentColor;
}

.ga-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    padding: 150px 0 90px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18)), var(--hero-image);
    background-position: center;
    background-size: cover;
}

.ga-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent);
    z-index: -1;
}

.ga-hero-content {
    color: #ffffff;
    max-width: 860px;
}

.ga-hero .ga-kicker,
.ga-hero h1,
.ga-hero p {
    color: #ffffff;
}

.ga-hero .ga-kicker {
    color: var(--color-accent);
}

.ga-hero p {
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.ga-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.8rem;
    border: 1px solid transparent;
    border-radius: var(--button-radius);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.ga-btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111111;
}

.ga-btn-primary:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.ga-btn-light {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

.ga-btn-light:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111111;
}

.ga-section {
    padding: clamp(5rem, 8vw, 8.5rem) 0;
}

.ga-section-soft {
    /* Color original: #f6f3ee; color de prueba más oscuro: #eee6dc */
    background: #f0e8de;
}

/* Paginas legales */
.ga-legal-page {
    background: #ffffff;
    padding: clamp(2.75rem, 6vw, 6rem) 0 clamp(5rem, 8vw, 8rem);
}

.ga-legal-heading,
.ga-legal-content {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
}

.ga-legal-heading {
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.ga-legal-heading h1 {
    max-width: 820px;
    margin: 0;
    color: #111111;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6.3rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.ga-legal-content {
    padding-top: clamp(2.5rem, 5vw, 4.5rem);
    color: #4f4f4f;
    font-size: 1rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.ga-legal-content h2 {
    margin: 3rem 0 1rem;
    color: #111111;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.ga-legal-content h2:first-child {
    margin-top: 0;
}

.ga-legal-content p {
    margin: 0 0 1rem;
}

.ga-legal-content ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.25rem;
}

.ga-legal-content li + li {
    margin-top: 0.65rem;
}

.ga-legal-content a {
    color: #111111;
    text-decoration-color: var(--color-accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.ga-legal-content a:hover {
    color: var(--color-accent-hover);
}

.ga-legal-details {
    margin: 1.5rem 0 2rem;
    padding: 1.5rem;
    background: #f0e8de;
}

.ga-legal-details p:last-child {
    margin-bottom: 0;
}

.ga-row-gap {
    row-gap: 2.5rem;
}

@media (min-width: 992px) {
    .ga-home-about-row {
        --bs-gutter-x: clamp(4rem, 7vw, 6rem);
    }
}

.ga-copy {
    color: #535353;
    font-size: 1rem;
    line-height: 1.85;
}

.ga-copy p {
    margin-bottom: 0;
}

.ga-copy p:last-child {
    margin-bottom: 0;
}

.ga-intro {
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.ga-statement {
    background: #111111;
    color: #ffffff;
    padding: clamp(4rem, 7vw, 7rem) 0;
    text-align: center;
}

.ga-statement p {
    max-width: 980px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 3.3vw, 3.35rem);
    font-style: italic;
    line-height: 1.12;
}

.ga-home .ga-statement p {
    max-width: 860px;
    font-size: clamp(1.25rem, 2.1vw, 2.15rem);
    line-height: 1.22;
}

.ga-stacked-content {
    max-width: 920px;
}

.ga-stacked-content h2 {
    max-width: 760px;
}

.ga-home .ga-stacked-content,
.ga-home .ga-stacked-content h2 {
    max-width: none;
}

.ga-home-why-heading {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ga-home-why-heading .ga-kicker {
    justify-content: center;
}

.ga-commitment-heading {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.ga-commitment-heading .ga-kicker {
    justify-content: center;
}

.ga-commitment-heading h2 {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}

.ga-image-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #ddd5ca;
}

.ga-image-frame::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
    z-index: 2;
}

.ga-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.ga-image-tall img {
    max-height: 760px;
    object-position: center;
}

.ga-section-heading {
    max-width: 880px;
    margin-bottom: 3rem;
}

.ga-section-heading-center {
    margin: clamp(4rem, 7vw, 6.5rem) auto 3rem;
    text-align: center;
}

.ga-section-heading-center .ga-kicker {
    justify-content: center;
}

.ga-featured-projects {
    color: #111111;
}

.ga-featured-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ga-featured-projects .ga-kicker {
    color: var(--color-accent);
}

.ga-featured-projects h2,
.ga-featured-projects h3 {
    color: #111111;
}

.ga-featured-projects .ga-copy {
    color: #676767;
}

.ga-featured-projects .ga-copy .ga-btn {
    margin-top: 1.5rem;
}

.ga-identity-process {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.ga-home-process-list {
    max-width: none;
    margin: 0;
}

.ga-home-identity-section {
    padding-bottom: 0;
}

.ga-icon-grid {
    display: grid;
    gap: 1px;
    background: rgba(17, 17, 17, 0.12);
}

.ga-icon-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ga-icon-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ga-icon-card {
    min-height: 100%;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background: #f6f3ee;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.ga-icon-card-white {
    background: #ffffff;
}

.ga-icon-card:hover {
    background: #111111;
    transform: translateY(-4px);
}

.ga-icon-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1.25rem;
}

.ga-icon-card h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.ga-icon-card p {
    color: #676767;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.ga-icon-card:hover h3,
.ga-icon-card:hover p {
    color: #ffffff;
}

.ga-home-icon-grid {
    gap: clamp(1.5rem, 3vw, 3rem);
    background: transparent;
}

.ga-home-icon-card,
.ga-home-icon-card.ga-icon-card-white {
    background: transparent;
    text-align: center;
}

.ga-home-icon-card:hover {
    background: transparent;
    transform: none;
}

.ga-home-icon-card img {
    margin-right: auto;
    margin-left: auto;
}

.ga-home-icon-card:hover h3 {
    color: #111111;
}

.ga-home-icon-card:hover p {
    color: #676767;
}

.ga-image-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(17, 17, 17, 0.12);
}

.ga-image-card-grid-service {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(3rem, 5vw, 5rem);
}

.ga-image-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ga-estudio-project-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
}

.ga-estudio-intro {
    padding-bottom: clamp(2.5rem, 4vw, 4.25rem);
    border-bottom: 0;
}

.ga-estudio-projects-section {
    padding-top: clamp(2.5rem, 4vw, 4.25rem);
}

.ga-estudio-project-heading {
    max-width: none;
}

.ga-estudio-project-grid .ga-image-card {
    background: transparent;
}

.ga-estudio-project-grid .ga-image-card > div {
    padding: 1.2rem 0 0;
}

.ga-estudio-project-grid .ga-image-card:hover img {
    transform: none;
}

.ga-home-featured-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
}

.ga-home-featured-grid .ga-image-card {
    background: transparent;
}

.ga-home-featured-grid .ga-image-card figure {
    background: transparent;
}

.ga-home-featured-grid .ga-image-card > div {
    padding: 1.2rem 0 0;
}

.ga-home-featured-grid .ga-image-card:hover img {
    transform: none;
}

.ga-diseno-wide-heading {
    max-width: none;
}

.ga-diseno-centered-heading {
    text-align: center;
}

.ga-diseno-centered-heading .ga-kicker {
    justify-content: center;
}

.ga-diseno-centered-heading h2 {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.ga-diseno-centered-heading .ga-copy {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.ga-diseno-audience-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
}

.ga-diseno-audience-grid .ga-image-card {
    background: transparent;
}

.ga-diseno-audience-grid .ga-image-card > div {
    padding: 1.2rem 0 0;
}

.ga-diseno-audience-grid .ga-image-card:hover img {
    transform: none;
}

.ga-diseno-icon-grid {
    background: transparent;
}

.ga-mobiliario-wide-heading {
    max-width: none;
}

.ga-section:not(.ga-section-soft) .ga-text-panel.ga-mobiliario-workshop-panel {
    padding: 0;
    background: transparent;
}

.ga-mobiliario-process-heading {
    margin-top: 0;
}

.ga-mobiliario-card-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
}

.ga-mobiliario-card-grid .ga-image-card {
    background: transparent;
}

.ga-mobiliario-card-grid .ga-image-card > div {
    padding: 1.2rem 0 0;
}

.ga-mobiliario-card-grid .ga-image-card:hover img {
    transform: none;
}

.ga-rediseno-wide-heading {
    max-width: none;
}

.ga-rediseno-centered-heading {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ga-rediseno-centered-heading .ga-kicker {
    justify-content: center;
}

.ga-rediseno-card-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
}

.ga-rediseno-card-grid .ga-image-card {
    background: transparent;
}

.ga-rediseno-card-grid .ga-image-card > div {
    padding: 1.2rem 0 0;
}

.ga-rediseno-card-grid .ga-image-card:hover img {
    transform: none;
}

.ga-rediseno-icon-grid {
    background: transparent;
}

.ga-adaptacion-wide-heading {
    max-width: none;
}

.ga-adaptacion-centered-heading {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ga-adaptacion-centered-heading .ga-kicker {
    justify-content: center;
}

.ga-adaptacion-card-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
}

.ga-adaptacion-card-grid .ga-image-card {
    background: transparent;
}

.ga-adaptacion-card-grid .ga-image-card > div {
    padding: 1.2rem 0 0;
}

.ga-adaptacion-card-grid .ga-image-card:hover img {
    transform: none;
}

.ga-adaptacion-icon-grid {
    background: transparent;
}

.ga-image-card {
    min-height: 100%;
    background: #ffffff;
}

.ga-image-card figure {
    margin: 0;
    overflow: hidden;
    background: #ddd5ca;
}

.ga-image-card img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ga-image-card:hover img {
    transform: scale(1.04);
}

.ga-image-card > div {
    padding: clamp(1.45rem, 2.5vw, 2rem);
}

.ga-image-card h3 {
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
}

.ga-image-card p {
    color: #676767;
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.ga-feature-block {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.ga-feature-block + .ga-feature-block {
    margin-top: clamp(5rem, 8vw, 8rem);
}

.ga-feature-block-reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.ga-feature-block-reverse .ga-image-frame {
    order: 2;
}

.ga-feature-content {
    max-width: 660px;
}

.ga-text-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    padding: clamp(2rem, 5vw, 4.5rem);
    background: #ffffff;
}

.ga-section:not(.ga-section-soft) .ga-text-panel {
    /* Color original: #f6f3ee; color de prueba más oscuro: #eee6dc */
    background: #f0e8de;
}

.ga-section-soft .ga-text-panel {
    padding: 0;
    background: transparent;
}

.ga-list-label {
    margin: 1.8rem 0 0;
    color: #111111;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ga-quote {
    margin-top: 1.8rem;
    color: #111111;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 2.8vw, 2.8rem);
    font-style: italic;
    line-height: 1.08;
}

.ga-number-list {
    display: grid;
    gap: 1px;
    max-width: 960px;
    margin: 0 auto;
    background: rgba(17, 17, 17, 0.12);
}

.ga-number-item {
    padding: clamp(2rem, 4vw, 3.5rem);
    background: #ffffff;
    text-align: center;
}

.ga-number-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 1.4rem;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.ga-number-item h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.ga-number-item p {
    max-width: 720px;
    margin: 0 auto;
    color: #676767;
    line-height: 1.8;
}

.ga-number-list-compact .ga-number-item {
    padding-top: clamp(1.6rem, 3vw, 2.5rem);
    padding-bottom: clamp(1.6rem, 3vw, 2.5rem);
}

.ga-mobiliario-process-list {
    gap: clamp(1.35rem, 2.4vw, 2rem);
    max-width: 1040px;
    background: transparent;
}

.ga-mobiliario-process-list .ga-number-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
    padding: 0;
    background: transparent;
    text-align: left;
}

.ga-mobiliario-process-list .ga-number-item span {
    width: 74px;
    height: 74px;
    margin-bottom: 0;
    border-radius: 50%;
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111111;
}

.ga-mobiliario-process-list .ga-number-item h3 {
    margin-bottom: 0.7rem;
}

.ga-mobiliario-process-list .ga-number-item p {
    max-width: none;
    margin: 0;
}

.ga-rediseno-process-list {
    max-width: 1080px;
}

.ga-adaptacion-process-list {
    max-width: 1080px;
}

.ga-split-list {
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
}

.ga-split-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.ga-split-card-reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.ga-split-card-reverse figure {
    order: 2;
}

.ga-split-card > div {
    max-width: 660px;
}

.ga-split-subtitle {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: var(--color-accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ga-split-card h3 {
    font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.ga-split-card p {
    color: #565656;
    line-height: 1.85;
}

.ga-before-after-grid {
    display: grid;
    gap: 0;
}

.ga-before-after-card {
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--color-accent);
    background: transparent;
}

.ga-before-after-card:first-child {
    padding-top: 0;
    border-top: 0;
}

.ga-before-after-card:last-child {
    padding-bottom: 0;
}

.ga-before-after-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    background: transparent;
}

.ga-before-after-images figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #ddd5ca;
}

.ga-before-after-images span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.45rem 0.7rem;
    background: var(--color-accent);
    color: #111111;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ga-before-after-images img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.ga-before-after-card p {
    max-width: none;
    margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
    color: #333333;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.ga-process-list {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.ga-estudio .ga-process-list {
    gap: 0;
}

.ga-estudio .ga-process-row,
.ga-estudio .ga-process-row-reverse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-process-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    min-height: 430px;
    background: #ffffff;
}

.ga-process-row-reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.ga-process-row-reverse figure {
    order: 2;
}

.ga-process-row figure {
    margin: 0;
    overflow: hidden;
    background: #ddd5ca;
}

.ga-process-row img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.ga-process-row:hover img {
    transform: scale(1.04);
}

.ga-estudio .ga-process-row:hover img {
    transform: none;
}

.ga-process-row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4.5rem);
}

.ga-process-content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
}

.ga-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 0;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    background: var(--color-accent);
    color: #111111;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.ga-process-row h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.ga-process-row p {
    color: #676767;
    font-size: 1rem;
    line-height: 1.82;
    margin-bottom: 0;
}

.ga-visual-cta {
    position: relative;
    isolation: isolate;
    padding: clamp(5rem, 10vw, 10rem) 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)), var(--cta-image);
    background-position: center;
    background-size: cover;
}

.ga-visual-cta-content {
    max-width: 680px;
    color: #ffffff;
}

.ga-visual-cta h2,
.ga-visual-cta p {
    color: #ffffff;
}

.ga-visual-cta p {
    max-width: 520px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    line-height: 1.8;
}

.ga-visual-cta-content .ga-btn {
    margin-top: 2rem;
}

.ga-amarar {
    margin-top: clamp(4rem, 7vw, 6rem);
}

.ga-amarar-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
}

.ga-amarar-card > div:first-child {
    position: relative;
    min-height: 0;
}

.ga-amarar-card .ga-image-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
}

.ga-amarar-card .ga-image-frame img {
    height: 100%;
    min-height: 0;
}

.ga-amarar-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.75rem, 3vw, 3rem);
    background: #f0e8de;
}

.ga-amarar-content a {
    color: #111111;
    font-weight: 700;
    text-decoration-color: var(--color-accent);
}

.ga-amarar-content a:hover {
    color: var(--color-accent);
}

.ga-amarar-closing {
    max-width: 980px;
    margin: clamp(2.5rem, 5vw, 4rem) auto 0;
    text-align: center;
}

.ga-amarar-closing p {
    color: #111111;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2.1vw, 2.15rem);
    font-style: italic;
    line-height: 1.18;
}

.ga-estudio-amarar .ga-image-frame img {
    height: clamp(500px, 46vw, 588px);
    min-height: 0;
}

.ga-adaptacion-process-heading {
    margin-top: 0;
}

.ga-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.8rem;
    display: grid;
    gap: 0.85rem;
}

.ga-check-list li {
    position: relative;
    padding-left: 2rem;
    color: #4d4d4d;
    line-height: 1.7;
}

.ga-check-list li::before {
    content: '';
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 0.8rem;
    height: 0.8rem;
    border: 2px solid var(--color-accent);
    transform: rotate(45deg);
}

.ga-contact-band {
    background: #111111;
    color: #ffffff;
}

.ga-contact-band h2,
.ga-contact-band .ga-kicker {
    color: #ffffff;
}

.ga-contact-band .ga-kicker {
    color: var(--color-accent);
}

.ga-contact-band .ga-copy {
    color: rgba(255, 255, 255, 0.78);
}

.ga-contact-band form {
    margin-top: 0 !important;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background: #ffffff;
    color: #111111;
}

.ga-contact-band .form-control {
    border-radius: 0;
    border-color: rgba(17, 17, 17, 0.14);
}

.ga-contact-band .btn {
    border-radius: var(--button-radius);
}

.ga-contact-band .form-check-label,
.ga-contact-band .text-muted {
    color: #555555 !important;
}

.ga-contact-page-section {
    min-height: calc(100vh - 88px);
    padding-top: clamp(4.5rem, 7vw, 6.5rem);
    padding-bottom: 0;
}

.ga-contact-page-heading {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ga-contact-page-heading .ga-kicker {
    justify-content: center;
}

.ga-contact-page-heading h1 {
    font-size: clamp(3.1rem, 7vw, 7.5rem);
}

.ga-contact-page-card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    background: #ffffff;
}

.ga-contact-page-card form {
    margin-top: 0 !important;
}

.ga-contact-page-card .form-control {
    min-height: 58px;
    border-color: rgba(17, 17, 17, 0.16);
    border-radius: 0;
}

.ga-contact-page-card textarea.form-control {
    min-height: 170px;
}

.ga-contact-page-card .form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.2rem rgba(225, 182, 126, 0.18);
}

.ga-contact-page-card .form-floating > label {
    color: #777777;
}

.ga-contact-page-card .form-check-label,
.ga-contact-page-card .text-muted {
    color: #555555 !important;
}

.ga-contact-page-card .form-check-label a {
    color: #111111;
    font-weight: 700;
    text-decoration-color: var(--color-accent);
}

.ga-contact-page-card .btn-primary {
    border-radius: var(--button-radius);
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111111;
}

.ga-contact-page-card .btn-primary:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.ga-contact-alternatives {
    width: 100%;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(2.25rem, 5vw, 4rem);
    text-align: center;
    background: #f0e8de;
}

.ga-contact-alternatives-inner {
    max-width: 980px;
}

.ga-contact-alternatives .ga-kicker {
    justify-content: center;
}

.ga-contact-alternatives h2 {
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.15rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.ga-contact-alternatives > p {
    margin: 0 auto;
    color: var(--color-secondary);
}

.ga-contact-alternatives-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ga-contact-alternative {
    display: inline-flex;
    min-width: 220px;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.85rem 1.35rem;
    color: #ffffff;
    background: #111111;
    border: 1px solid #111111;
    border-radius: var(--button-radius);
    text-align: left;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ga-contact-alternative:hover {
    color: #ffffff;
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.ga-contact-alternative-whatsapp,
.ga-contact-alternative-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.ga-contact-alternative-whatsapp:hover {
    background: #1fbd5a;
    border-color: #1fbd5a;
}

.ga-contact-alternative svg {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    fill: currentColor;
}

.ga-contact-alternative-phone {
    fill: none !important;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ga-contact-alternative span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.ga-estudio-advantages-heading {
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ga-estudio-advantages-heading .ga-kicker {
    justify-content: center;
}

.ga-estudio-advantages-grid {
    background: transparent;
}

.ga-home-contact-band form {
    padding: 0;
    background: transparent;
    color: #ffffff;
}

.ga-home-contact-band #contact-form-home .row,
.ga-estudio-contact-band #contact-form-estudio .row,
.ga-diseno-contact-band #contact-form-diseno .row,
.ga-mobiliario-contact-band #contact-form-mobiliario .row,
.ga-rediseno-contact-band #contact-form-rediseno .row,
.ga-adaptacion-contact-band #contact-form-adaptacion .row {
    display: block;
}

.ga-home-contact-band #contact-form-home .col-lg-6,
.ga-estudio-contact-band #contact-form-estudio .col-lg-6,
.ga-diseno-contact-band #contact-form-diseno .col-lg-6,
.ga-mobiliario-contact-band #contact-form-mobiliario .col-lg-6,
.ga-rediseno-contact-band #contact-form-rediseno .col-lg-6,
.ga-adaptacion-contact-band #contact-form-adaptacion .col-lg-6 {
    width: 100%;
}

.ga-home-contact-band .form-control {
    min-height: 58px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.ga-home-contact-band textarea.form-control {
    min-height: 150px;
}

.ga-home-contact-band .form-floating > label {
    color: rgba(255, 255, 255, 0.62);
}

.ga-home-contact-band .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(225, 182, 126, 0.18);
}

.ga-home-contact-band .form-check-label,
.ga-home-contact-band .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.ga-home-contact-band .form-check-label a {
    color: var(--color-accent);
}

.ga-home-contact-band .form-check-input {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.42);
}

.ga-home-contact-band .form-check-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.ga-home-contact-band .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #111111;
}

.ga-home-contact-band .btn-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

/* Portfolio de proyectos */
.ga-projects-intro,
.ga-project-detail-intro {
    padding-top: clamp(2.5rem, 5vw, 4.5rem);
    padding-bottom: clamp(3rem, 5vw, 5rem);
}

.ga-projects-heading,
.ga-project-detail-heading {
    max-width: none;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.ga-projects-heading h1,
.ga-project-detail-heading h1 {
    max-width: 1100px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.3rem, 7vw, 7.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.9;
}

.ga-project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem clamp(1.25rem, 3vw, 2.75rem);
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.ga-project-filter {
    position: relative;
    padding: 0.55rem 0;
    border: 0;
    background: transparent;
    color: #676767;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.ga-project-filter::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.ga-project-filter:hover,
.ga-project-filter:focus-visible,
.ga-project-filter.is-active {
    color: #111111;
}

.ga-project-filter:hover::after,
.ga-project-filter:focus-visible::after,
.ga-project-filter.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ga-projects-list-section {
    padding-top: clamp(4rem, 7vw, 7rem);
}

.ga-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 2.75rem);
}

.ga-project-card[hidden] {
    display: none;
}

.ga-project-card a {
    display: block;
    color: #111111;
    text-decoration: none;
}

.ga-project-card figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #ddd5ca;
}

.ga-project-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.ga-project-card a:hover img,
.ga-project-card a:focus-visible img {
    opacity: 1;
}

.ga-project-card-content {
    padding-top: 1.25rem;
}

.ga-project-card-content span {
    display: block;
    margin-bottom: 0.55rem;
    color: #8a6333;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ga-project-card-content h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}

.ga-project-detail-heading {
    margin-bottom: 0;
}

.ga-project-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
}

.ga-project-gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #ddd5ca;
    cursor: zoom-in;
}

.ga-project-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: opacity 0.25s ease;
}

.ga-project-gallery-item:hover img,
.ga-project-gallery-item:focus-visible img {
    opacity: 1;
}

.ga-project-card figure::after,
.ga-project-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(225, 182, 126, 0.78);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ga-project-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #ffffff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ga-project-hover-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.ga-project-card a:hover figure::after,
.ga-project-card a:focus-visible figure::after,
.ga-project-gallery-item:hover::after,
.ga-project-gallery-item:focus-visible::after {
    opacity: 1;
}

.ga-project-card a:hover .ga-project-hover-icon,
.ga-project-card a:focus-visible .ga-project-hover-icon,
.ga-project-gallery-item:hover .ga-project-hover-icon,
.ga-project-gallery-item:focus-visible .ga-project-hover-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.ga-project-gallery-item:focus-visible,
.ga-project-filter:focus-visible,
.ga-project-card a:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.ga-lightbox-open {
    overflow: hidden;
}

.ga-project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2.5rem);
    color: #ffffff;
}

.ga-project-lightbox[hidden] {
    display: none;
}

.ga-project-lightbox-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(10, 10, 10, 0.94);
}

.ga-project-lightbox-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    width: min(94vw, 1500px);
    max-height: 92vh;
}

.ga-project-lightbox-panel.is-single-image {
    grid-template-columns: minmax(0, 1fr);
}

.ga-project-lightbox-panel figure {
    min-width: 0;
    margin: 0;
    text-align: center;
}

.ga-project-lightbox-panel figure img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 82vh;
    margin: 0 auto;
    object-fit: contain;
}

.ga-project-lightbox-panel figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.ga-project-lightbox-close,
.ga-project-lightbox-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.55);
    color: #ffffff;
    font-size: 1.25rem;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ga-project-lightbox-close:hover,
.ga-project-lightbox-close:focus-visible,
.ga-project-lightbox-nav:hover,
.ga-project-lightbox-nav:focus-visible {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #111111;
}

.ga-project-lightbox-close {
    position: fixed;
    top: clamp(1rem, 2.5vw, 2rem);
    right: clamp(1rem, 2.5vw, 2rem);
    z-index: 2;
    padding: 0;
    font-size: 0;
}

.ga-project-lightbox-close::before,
.ga-project-lightbox-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
}

.ga-project-lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.ga-project-lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ga-project-lightbox-nav[hidden] {
    display: none;
}

/* ================================================
   8. RESPONSIVE
   ================================================ */
@media (max-width: 991.98px) {
    :root {
        --navbar-height: 70px;
        --topbar-height: 34px;
    }

    .navbar {
        padding: 0.25rem 0;
    }

    .navbar-logo {
        max-height: 55px;
    }

    .ga-project-grid,
    .ga-project-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offcanvas-body .navbar-nav {
        align-items: flex-start !important;
    }

    .navbar .nav-link {
        padding: 0.9rem 0;
    }

    .navbar .nav-link::before {
        right: auto;
        bottom: 0.55rem;
        left: 0;
        width: 46px;
        transform-origin: left;
    }

    .navbar .offcanvas {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        z-index: 1250;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ga-row-gap {
        row-gap: 1.2rem;
    }

    .row.ga-row-gap.align-items-start {
        row-gap: 0;
    }

    .ga-icon-grid-4,
    .ga-icon-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ga-image-card-grid,
    .ga-image-card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ga-image-card-grid-service .ga-image-card {
        grid-column: auto;
    }

    .ga-featured-heading,
    .ga-identity-process,
    .ga-amarar-card {
        grid-template-columns: 1fr;
    }

    .ga-amarar-card > div:first-child {
        min-height: 320px;
    }

    .ga-amarar-card .ga-image-frame img {
        min-height: 320px;
        max-height: none;
    }

    .ga-estudio-amarar .ga-image-frame img {
        height: 320px;
        min-height: 320px;
    }

    .ga-feature-block,
    .ga-feature-block-reverse,
    .ga-text-panel,
    .ga-split-card,
    .ga-split-card-reverse,
    .ga-process-row,
    .ga-process-row-reverse {
        grid-template-columns: 1fr;
    }

    .ga-estudio .ga-process-row,
    .ga-estudio .ga-process-row-reverse {
        grid-template-columns: 1fr;
    }

    .ga-text-panel {
        gap: 0;
    }

    .ga-feature-block-reverse .ga-image-frame,
    .ga-process-row-reverse figure,
    .ga-split-card-reverse figure {
        order: 0;
    }

    .ga-hero {
        min-height: 86vh;
        padding-top: 120px;
    }
}

@media (max-width: 767.98px) {
    .ga-topbar-contact {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .ga-topbar-contact a {
        font-size: 0.66rem;
        letter-spacing: 0.035em;
    }

    .ga-whatsapp-float {
        width: 54px;
        height: 54px;
    }

    .ga-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .ga-contact-alternatives-links {
        flex-direction: column;
    }

    .ga-contact-alternative {
        width: 100%;
        min-width: 0;
    }

    .hero {
        min-height: 85vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
    }

    .ga-section {
        padding: 4rem 0;
    }

    .ga-projects-intro,
    .ga-project-detail-intro {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .ga-projects-heading h1,
    .ga-project-detail-heading h1 {
        font-size: clamp(2.8rem, 15vw, 4.5rem);
    }

    .ga-project-filters {
        gap: 0.35rem 1.25rem;
    }

    .ga-project-grid,
    .ga-project-gallery {
        grid-template-columns: 1fr;
    }

    .ga-project-lightbox {
        padding: 1rem;
    }

    .ga-project-lightbox-panel {
        display: block;
        width: 100%;
    }

    .ga-project-lightbox-panel figure img {
        max-height: 74vh;
    }

    .ga-project-lightbox-panel figcaption {
        flex-direction: column;
        gap: 0.2rem;
        padding-right: 4rem;
        text-align: left;
    }

    .ga-project-lightbox-nav {
        position: fixed;
        bottom: 1rem;
        z-index: 2;
    }

    .ga-project-lightbox-prev {
        left: calc(50% - 60px);
    }

    .ga-project-lightbox-next {
        right: calc(50% - 60px);
    }

    .ga-icon-grid-4,
    .ga-icon-grid-5 {
        grid-template-columns: 1fr;
    }

    .ga-before-after-images {
        grid-template-columns: 1fr;
    }

    .ga-before-after-images img {
        height: 260px;
    }

    .ga-image-card-grid,
    .ga-image-card-grid-3 {
        grid-template-columns: 1fr;
    }

    .ga-image-card img {
        height: 240px;
    }

    .ga-process-row {
        min-height: 0;
    }

    .ga-process-row img {
        min-height: 260px;
        height: 260px;
    }

    .ga-process-row > div {
        padding: 1.75rem;
    }

    .ga-mobiliario-process-list .ga-number-item,
    .ga-process-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ga-text-panel {
        padding: 1.75rem;
    }

    .ga-image-frame img {
        min-height: 320px;
    }

    .ga-kicker::before {
        width: 26px;
    }
}
