/* Nav Scramble Animation */
.site-nav a.scrambling {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
}

.btn-cta.scrambling {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 1px;
}

/* ── Language Switcher ───────────────────────────────────────────── */
.lang-switcher {
    position: relative;
    margin-left: 16px;
    flex-shrink: 0;
}

.lang-flag-btn {
    background: none;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}

.lang-flag-btn img {
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.lang-flag-btn:hover,
.lang-flag-btn.open {
    border-color: var(--accent-gold, #B08D57);
    background: rgba(176, 141, 87, 0.06);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border-lux, #E2E8F0);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
    min-width: 148px;
    z-index: 9999;
    overflow: hidden;
}

.lang-dropdown.open {
    display: block;
    animation: langSlideIn 0.14s ease;
}

@keyframes langSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.03em;
    padding: 9px 14px;
    text-align: left;
    color: var(--text-main, #334155);
    transition: background 0.13s, color 0.13s;
    white-space: nowrap;
}

.lang-option + .lang-option {
    border-top: 1px solid var(--border-lux, #E2E8F0);
}

.lang-option:hover {
    background: rgba(176, 141, 87, 0.07);
    color: var(--accent-gold, #B08D57);
}

.lang-option.active {
    color: var(--accent-gold, #B08D57);
    font-weight: 700;
}

/* Reset Básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Variables CSS - REVISIÓN DE LUJO SILENCIOSO */
:root {
    --primary-dark: #0F172A;     /* Azul Medianoche - Autoridad */
    --accent-gold: #B08D57;      /* Oro Viejo - Exclusividad */
    --bg-stone: #F8FAFC;        /* Gris Piedra - Solidez */
    --text-main: #334155;        /* Slate - Lectura técnica */
    --white: #FFFFFF;
    --border-lux: #E2E8F0;      /* Bordes finos y sutiles */
    
    /* Tipografías */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7; /* Más aire para mayor elegancia */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em; /* Estética más moderna */
}

p {
    font-weight: 400;
    margin-bottom: 1.2rem;
}

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

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

.section-padding {
    padding: 8rem 0; /* Más espacio entre secciones = más lujo */
}

/* Multi-page Layout Structure */
.page-container {
    min-height: calc(100vh - 78px - 100px); /* Header ~78px, Footer ~100px */
    display: flex;
    flex-direction: column;
}

.page-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Header & Navegación (Sticky Header) */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-lux);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a:hover {
    color: var(--accent-gold);
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(0.15);
    transition: filter 0.3s ease;
}

.logo a:hover .logo-img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(30%) saturate(500%) hue-rotate(5deg);
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.site-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    color: var(--text-main);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--accent-gold);
}

/* Botones Estilo "Bespoke" */
.btn-cta {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: none;
    text-align: center;
}

.btn-cta:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
/* 2025-04-26 00:14 | Full-viewport hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* 2025-04-25 23:55 | Center content horizontally */
    justify-content: center;
    /* Degradado más profundo y serio */
    /* 2025-04-25 23:55 | Symmetric overlay for centred layout */
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../img/portada.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 5%;
}

/* 2025-04-25 23:55 | Centred hero layout */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

/* Desktop: show desktop copy, hide mobile copy */
.hero-mobile { display: none; }
.hero-desktop { display: block; }

@media (max-width: 768px) {
    /* Mobile: swap copies, centre everything */
    .hero-desktop { display: none; }
    .hero-mobile  { display: block; }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content .btn-cta {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }

    .hero-mobile.hero h1,
    .hero-content .hero-mobile {
        text-align: center;
    }

    /* Remove the left gold border from the mobile subtitle */
    .hero-content p.hero-mobile {
        border-left: none;
        padding-left: 0;
        font-size: 1.1rem;
    }
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* 2025-04-26 00:00 | Hero keyword highlight and precision word animation */
.hero-highlight {
    color: var(--accent-gold);
    font-weight: 700;
}
.hero-precision {
    display: inline-block;
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    letter-spacing: 0.04em;
    transition: color 0.15s;
}
.hero-precision.scrambling {
    color: var(--accent-gold);
    letter-spacing: 0.08em;
}

/* 2025-04-25 23:55 | Removed left-border (incompatible with centred text) */
.hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.emotional-copy {
    background: rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    color: var(--white);
    margin-bottom: 2rem !important;
    border-radius: 4px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.philosophy-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.demarco-quote {
    background-color: var(--white);
    border-left: 5px solid var(--primary-dark);
    padding: 2.5rem 3rem;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 0 12px 12px 0;
    text-align: left;
    font-style: italic;
    position: relative;
    max-width: 800px;
}

.demarco-quote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 6rem;
    color: rgba(15, 23, 42, 0.05);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.demarco-quote p {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.demarco-quote footer {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Nosotros Section */
#nosotros {
    position: relative;
    background-image: linear-gradient(to bottom, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.95)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2070&q=40');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.about-story {
    font-size: 1.4rem;
    color: var(--primary-dark);
    border-left: 5px solid var(--accent-gold);
    font-style: italic;
    font-family: var(--font-heading);
    padding-left: 2rem;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-point {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 2.5rem;
    background: var(--bg-stone);
    color: var(--accent-gold);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    border: 1px solid var(--border-lux);
}

.point-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.point-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Ejemplos Section (Grid & Técnico) */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid-tecnico {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

.card-ejemplo {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-lux);
    border-top: 3px solid var(--border-lux); /* Empezamos con borde neutro */
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.card-ejemplo:hover {
    border-top: 3px solid var(--accent-gold); /* Cambio a oro al hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    transform: translateY(-10px);
}

.icon-tecnico {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-ejemplo h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.card-ejemplo p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.methodology-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 4rem;
    border-top: 4px solid var(--primary-dark);
}

.methodology-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    text-align: center;
}

.methodology-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.methodology-list li {
    font-size: 1.15rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.methodology-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* ── Slideshow ── */
.slideshow-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3.5rem;
    border-radius: 4px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.slide.active {
    opacity: 1;
}

/* 2025-04-26 00:27 | Zoom cursor hints clickability */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    display: block;
    background: var(--navy);
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(176, 141, 87, 0.4);
    color: var(--accent-gold);
    font-size: 2.2rem;
    line-height: 1;
    width: 48px;
    height: 64px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: rgba(176, 141, 87, 0.2);
    border-color: var(--accent-gold);
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

/* ── Image lightbox — fullscreen on tap/click ────────────────────── */
/* 2025-04-26 00:27 | Tap any gallery image to view fullscreen */
.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}
.img-lightbox.open {
    display: flex;
}
#lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    cursor: default;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    pointer-events: all;
}
.lightbox-close:hover,
.lightbox-close:focus {
    background: rgba(176, 141, 87, 0.75);
    outline: none;
}
/* 2025-04-26 00:33 | Portrait: rotate image 90° so landscape content fills more screen */
@media (orientation: portrait) {
    #lightbox-img {
        max-width: none;
        max-height: none;
        width: 100vh;
        height: 100vw;
        transform: rotate(90deg);
        object-fit: contain;
    }
}
/* 2025-04-26 00:33 | Lightbox prev/next arrows */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 2.4rem;
    line-height: 1;
    width: 48px;
    height: 64px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
    pointer-events: all;
}
.lightbox-nav:hover,
.lightbox-nav:focus {
    background: rgba(176, 141, 87, 0.75);
    outline: none;
}
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

.slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 12px;
    background: var(--navy);
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(176, 141, 87, 0.3);
    border: 1px solid rgba(176, 141, 87, 0.5);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.slide-dot.active {
    background: var(--accent-gold);
    transform: scale(1.25);
}

/* ── Proceso unificado (servicios + metodología) ── */
.proceso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.proceso-card {
    background: #fff;
    border: 1px solid rgba(176, 141, 87, 0.18);
    border-radius: 4px;
    padding: 2rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.proceso-card:hover {
    box-shadow: 0 6px 24px rgba(176, 141, 87, 0.12);
    border-color: rgba(176, 141, 87, 0.45);
}

.proceso-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.proceso-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(176, 141, 87, 0.22);
    line-height: 1;
    letter-spacing: -1px;
}

.proceso-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin: 0;
}

.proceso-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.65;
    margin: 0;
}

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

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

.methodology-action {
    text-align: center;
    margin-top: 3rem;
}

.pricing-disclaimer {
    background-color: var(--bg-stone);
    border-left: 4px solid var(--accent-gold);
    padding: 2rem;
    margin-top: 4rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.highlight-gold {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Elemento Visual Interactivo: Partida de Obra */
.interactive-partida {
    background: var(--white);
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Tabla Técnica - Estética de Ingeniería */
.partida-header {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--accent-gold);
}

.partida-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Tooltip */
.tooltip-container {
    position: relative;
    cursor: pointer;
}

.tooltip-trigger {
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.tooltip-content {
    visibility: hidden;
    width: 280px;
    background-color: var(--text-main);
    color: var(--white);
    text-align: center;
    border-radius: 4px;
    padding: 0.8rem;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: normal;
    pointer-events: none;
}

.tooltip-content::after {
    content: "";    
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--text-main) transparent transparent transparent;
}

.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* Tabla Técnica */
.table-responsive {
    overflow-x: auto;
}

.table-tecnica {
    width: 100%;
    border-collapse: collapse;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
}

.table-tecnica th, .table-tecnica td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-lux);
}

.table-tecnica th {
    background-color: var(--bg-stone);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-main);
    font-weight: 600;
}

.sub-row {
    color: #666;
}

.sub-row td {
    border-bottom: none;
    font-style: italic;
}

.indent {
    margin-left: 1rem;
    color: #aaa;
}

.total-row {
    background-color: #f4f7fa;
    font-weight: bold;
}

.total-row td {
    border-top: 2px solid #ddd;
    border-bottom: none;
}

.text-right {
    text-align: right !important;
}

.total-amount {
    font-size: 1.1rem;
}

/* Pricing Section (Grid) */
.grid-pricing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.card-pricing {
    background: var(--white);
    padding: 4rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid var(--border-lux);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card-pricing:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.card-pricing h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.card-pricing .price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.card-pricing .tax {
    font-size: 1rem;
    color: #6c7a89;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Destacamos el Business con elegancia, no con colores estridentes */
.card-business.highlight {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.card-business.highlight h3,
.card-business.highlight p.price {
    color: var(--accent-gold);
}

.card-business.highlight p,
.card-business.highlight .tax {
    color: var(--white);
}

/* Formulario */
.form-container {
    max-width: 800px;
    background: var(--white);
    padding: 4rem;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border: 1px solid var(--border-lux);
    margin: 2rem auto 0;
}

.team-photo-wrapper {
    width: 100%;
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.team-photo-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.about-extra {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
}

#contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

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

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-lux);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.1);
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.form-message {
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    color: var(--accent-gold);
}

.form-message.error {
    color: #e74c3c;
}

/* 2025-04-26 01:42 | Phone field: prefix select (flag+code) + digit-only number input */
.phone-field {
    display: flex;
    border: 1px solid var(--border-lux);
    border-radius: 2px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-field:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(176, 141, 87, 0.1);
}
.phone-prefix-sel {
    padding: 1rem 0.6rem 1rem 1rem !important;
    border: none !important;
    border-right: 1px solid var(--border-lux) !important;
    border-radius: 0 !important;
    background: #f5f2ec !important;
    box-shadow: none !important;
    font-size: 0.88rem;
    min-width: 94px;
    flex-shrink: 0;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    padding-right: 24px !important;
}
.phone-prefix-sel:focus {
    background-color: #ece8e0 !important;
    outline: none;
}
.phone-number-input {
    border: none !important;
    border-radius: 0 !important;
    flex: 1;
    min-width: 0;
    box-shadow: none !important;
    background: var(--white) !important;
}
.phone-number-input:focus {
    outline: none;
    box-shadow: none !important;
}
/* 2025-04-26 01:42 | Email real-time validation visual states */
.form-group input.input-valid {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.1);
}
.form-group input.input-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

/* ── Spirit Level CAPTCHA ─────────────────────────────────────────── */
.level-captcha {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.25rem;
    background: var(--bg-stone);
    border: 1px solid var(--border-lux);
    border-radius: 4px;
}

.level-captcha-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    opacity: 0.6;
    margin: 0;
    text-align: center;
}

.level-scene {
    width: 100%;
    max-width: 480px;
}

.level-frame {
    display: flex;
    justify-content: center;
}

/* ── Slider control ───────────────────────────────────────────────── */
.level-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 480px;
}

.lc-icon { color: var(--accent-gold); flex-shrink: 0; }

.level-range {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(176,141,87,0.2);
    outline: none;
    cursor: pointer;
}
.level-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2.5px solid #fff;
    box-shadow: 0 0 0 1.5px var(--accent-gold), 0 2px 6px rgba(176,141,87,0.4);
    cursor: grab;
}
.level-range:active::-webkit-slider-thumb { cursor: grabbing; }
.level-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 2.5px solid #fff;
    box-shadow: 0 0 0 1.5px var(--accent-gold);
    cursor: grab;
}

/* Status text */
.level-status {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    color: #6b7280;
    margin: 0;
    text-align: center;
    transition: color 0.3s;
}
.level-status.ok { color: #16a34a; font-weight: 600; }

/* Disabled submit */
#submit-btn:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    pointer-events: none;
}

/* Footer - El cierre distinguido */
.site-footer {
    background-color: #050A14; /* Casi negro, muy profundo */
    color: rgba(255,255,255,0.6);
    padding: 6rem 0 0 0;
    font-size: 0.95rem;
    position: relative;
    border-top: 2px solid var(--accent-gold);
}

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

.footer-col h4 {
    color: var(--accent-gold); /* Títulos del footer en oro viejo */
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-logo a {
    color: var(--white);
}

.brand-desc {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-email {
    color: var(--white);
    border-bottom: 1px solid var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 2px;
}

.footer-email:hover {
    color: var(--accent-gold);
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-col address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.contact-col address p {
    margin-bottom: 0.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.btn-whatsapp:hover {
    background-color: var(--accent-gold);
    color: #050A14 !important;
    transform: translateY(-2px);
}

.wa-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.4);
}

/* Botón Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-dark);
    border: 1px solid var(--accent-gold);
    border-radius: 0; /* Cuadrado para mayor seriedad */
    color: var(--accent-gold);
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animation On Scroll Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    /* Tablas de precios se convierten en tarjetas verticales en móviles */
    .grid-pricing {
        grid-template-columns: 1fr;
    }
    .grid-tecnico {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 1rem 0;
    }
    
    .site-nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lang-switcher {
        margin: 0.75rem 0 0;
        justify-content: center;
    }

    .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .site-nav li {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .site-nav li:last-child {
        border-bottom: none;
    }
    
    #contact-form {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-container {
        padding: 1.5rem;
        margin: 1rem 0 0;
        border-radius: 4px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 5rem 5% 3rem;
        background-image: linear-gradient(to bottom, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.55) 50%, rgba(15,23,42,0.88) 100%), url('../img/portada.png');
        background-position: center center;
        background-attachment: scroll;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .grid-tecnico {
        grid-template-columns: 1fr;
    }
    .about-point {
        flex-direction: column;
        gap: 1.5rem;
    }

    #nosotros {
        background-attachment: scroll;
    }

    .team-photo-wrapper {
        overflow: hidden;
        border-radius: 6px;
        margin: 1.5rem 0;
    }

    .team-photo-wrapper img {
        width: 100%;
        max-width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: center 20%;
        display: block;
    }
    .about-story {
        font-size: 1.15rem;
        padding-left: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* =============================================
   LANDING PAGE SECTIONS
   ============================================= */

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.problem-body {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.stat-box {
    background: var(--primary-dark);
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: 4px;
    border-bottom: 3px solid var(--accent-gold);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.3;
}

.problem-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    display: block;
}

/* LP Services Grid */
.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.lp-service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-lux);
    border-top: 3px solid var(--border-lux);
    transition: all 0.4s ease;
}

.lp-service-card:hover {
    border-top-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-8px);
}

.lp-service-icon {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.lp-service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.lp-service-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Methodology Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--bg-stone);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-lux);
    border-left: 4px solid var(--accent-gold);
    transition: box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(176, 141, 87, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.step-card p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.faq-text-col h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.faq-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.faq-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid var(--border-lux);
}

.accordion-item:first-child {
    border-top: 1px solid var(--border-lux);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark);
    text-align: left;
    gap: 1.5rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.accordion-trigger:hover {
    color: var(--accent-gold);
}

.accordion-trigger[aria-expanded="true"] {
    color: var(--accent-gold);
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.35s ease;
    color: var(--accent-gold);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-content p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    padding-bottom: 1.5rem;
    line-height: 1.7;
}

/* CTA Final Section */
.cta-final-section {
    background-image: linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.88)),
        url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    padding: 8rem 0;
}

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

.cta-inner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Responsive – New LP Sections */
@media (max-width: 992px) {
    .lp-services-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-img {
        max-height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .lp-services-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .problem-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .problem-image-col {
        display: none;
    }
    .cta-inner h2 {
        font-size: 1.8rem;
    }
    .faq-text-col h2 {
        font-size: 1.8rem;
    }
}

/* ── Contact-page FAQ Accordion ─────────────────────────────────── */
#faq-contacto {
    background-color: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq-header h2 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border-lux);
}

.faq-item {
    border-bottom: 1px solid var(--border-lux);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.5rem 0.25rem;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: color 0.25s;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question[aria-expanded="true"] {
    color: var(--accent-gold);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--accent-gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.25s ease;
    padding: 0 0.25rem;
}

.faq-answer.open {
    max-height: 400px;
    padding: 0 0.25rem 1.5rem;
}

.faq-answer p {
    font-size: 0.98rem;
    color: #4a5568;
    line-height: 1.75;
    margin: 0;
}

.faq-answer p strong {
    color: var(--primary-dark);
    font-weight: 600;
}

@media (max-width: 600px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 0.97rem;
        padding: 1.2rem 0.25rem;
    }
}

/* ── Demo Budget iFrame ───────────────────────────────────────────── */
.demo-budget-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3.5rem;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border: 1px solid rgba(176,141,87,0.25);
    transition: border-radius 0.25s ease;
}

.demo-budget-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 1rem;
    background: var(--navy);
    border-bottom: 1px solid rgba(176,141,87,0.3);
    flex-shrink: 0;
}

.demo-budget-label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.04em;
}

.demo-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: demo-pulse 2s ease-in-out infinite;
}

@keyframes demo-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.45; transform: scale(0.85); }
}

.demo-fullscreen-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(176,141,87,0.12);
    border: 1px solid rgba(176,141,87,0.4);
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.demo-fullscreen-btn:hover {
    background: rgba(176,141,87,0.28);
    border-color: var(--accent-gold);
}

#demo-budget-iframe {
    width: 100%;
    height: 720px;
    border: none;
    display: block;
}


@media (max-width: 600px) {
    #demo-budget-iframe {
        height: 560px;
    }
}
