/* --- CSS Reset & Variables --- */
:root {
    --gold: #bba66a;
    --gold-dim: rgba(187, 166, 106, 0.15);
    --gold-glow: rgba(187, 166, 106, 0.4);

    --bg-dark: #080a0c;
    --bg-surface: rgba(16, 20, 24, 0.6);
    --bg-overlay: rgba(8, 10, 12, 0.85);

    --text-main: #fcfcfc;
    --text-muted: #d1d5db;
    --text-dark: #121519;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    scroll-padding-top: 200px;
}

body.dark-theme {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 0%, #151920 0%, var(--bg-dark) 60%);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-serif);
    font-weight: 600;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 300;
}

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

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--gold-glow);
}

/* --- Layout --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

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

.section {
    padding: 8rem 0;
    position: relative;
}

/* --- UI Elements --- */
.divider {
    height: 1px;
    width: 60px;
    background: var(--gold);
    margin: 2rem 0;
}

.divider.center {
    margin: 2rem auto;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--gold-dim);
    border-radius: 100px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge.gold {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 2rem;
    background: var(--bg-overlay);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gold-dim);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .logo-img {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.3);
    animation: logoSpin 20s linear 0s infinite;
    transform-style: preserve-3d;
}

.logo-img:hover {
    animation-play-state: paused;
    filter: brightness(1.5) drop-shadow(0 0 14px rgba(187, 166, 106, 0.85));
}

@keyframes logoSpin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn i {
    width: 28px;
    height: 28px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1) grayscale(10%);
    animation: slowPan 30s infinite alternate linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 10, 12, 0.8) 0%, rgba(8, 10, 12, 0.2) 100%);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.glass-panel {
    flex: 1;
    max-width: 55%;
    /* Se limita a la mitad del contenedor para no estamparse contra la foto */
    position: relative;
    z-index: 3;
}

.hero-image {
    position: absolute;
    bottom: -5rem;
    right: -10vw;
    /* Desplazada más hacia el borde derecho/afuera de la pantalla */
    height: 85vh;
    /* Límite máximo para que jamás toque el borde superior (ni el texto del menú) */
    max-width: 60vw;
    /* Subido ligeramente para compensar el corte por arrastre a la derecha */
    z-index: 1;
    pointer-events: none;
}

.joyce-img {
    height: 100%;
    /* Llena la caja de 85vh */
    width: auto;
    /* Mantiene la proporción perfecta sin estirarse */
    object-fit: contain;
    object-position: bottom right;
    /* Se ancla a la parte inferior y derecha */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    mask-image: linear-gradient(to top, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
}

.hero-title,
.hero-subtitle {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 15px rgba(0, 0, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 620px;
    /* Restringido para que no se estire y garantice la legibilidad en 3-4 líneas sin solapar la foto */
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 5px rgba(0, 0, 0, 0.7);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-primary span,
.btn-primary .btn-icon {
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.btn-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    z-index: 1;
    transition: var(--transition);
}

.btn-primary:hover {
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover .btn-glow {
    left: 0;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 1px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

@keyframes slowPan {
    from {
        transform: scale(1.05) translate(0, 0);
    }

    to {
        transform: scale(1.1) translate(-2%, 2%);
    }
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-desc {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-main);
}

.icon-check {
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.about-image-wrapper {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.image-frame {
    position: relative;
    border-radius: 4px;
}

.about-image {
    width: 100%;
    border-radius: 4px;
    filter: brightness(0.8) contrast(1.1);
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.about-image:hover {
    filter: brightness(1) contrast(1.05);
}

.image-accent-border {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: 1;
    border-radius: 4px;
}

.year-badge {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--bg-dark);
    border: 1px solid var(--gold-dim);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.year-badge .year {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.year-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --- Services --- */
.services.section {
    padding-top: 1rem;
}

.section-subtitle {
    max-width: none;
    margin: 0 auto 1.5rem;
    white-space: nowrap;
    font-size: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-content: center;
}

.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gold);
    /* Restaurado a dorado */
    padding: 1.25rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    position: relative;
    /* Para el marco offset */
    width: calc(100% - 10px);
    /* Espacio para el offset horizontal */
    margin-top: -1.2rem;
    /* Sube la imagen de forma notable para balancear */
    margin-bottom: 1.2rem;
    /* Iguala el espacio de abajo para que luzca céntrico antes del texto */
    background: #000;
}

.service-img-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: 1;
    pointer-events: none;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.8);
    position: relative;
    z-index: 2;
    /* Encima del marco */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-radius: 2px;
}

.glass-card:hover .service-img {
    transform: scale(1.1);
    filter: brightness(1);
}

.card-glow {
    position: absolute;
    top: var(--mouse-y, -100px);
    left: var(--mouse-x, -100px);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(20, 24, 28, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card:hover .card-border {
    border-color: var(--gold-dim);
}

.glass-card>* {
    position: relative;
    z-index: 2;
}

.glass-card p {
    margin-bottom: 1.5rem;
    min-height: 3.8rem;
    /* Ajustado para mayor compacidad manteniendo el equilibrio */
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.icon-gold {
    color: var(--gold);
    width: 28px;
    height: 28px;
}

.glass-card:hover .icon-wrapper {
    background: var(--gold);
    border-color: var(--gold);
}

.glass-card:hover .icon-gold {
    color: var(--bg-dark);
}

.card-arrow {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.glass-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.glass-card h3 {
    margin-top: 0;
}

/* --- Results --- */
.results.section {
    padding-top: 1rem;
}

.results {
    color: var(--text-main);
    z-index: 1;
}

.results-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('law_firm_bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.4);
    /* Removida la escala de grises para mostrar el color original */
}

.results-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 10, 12, 0.6);
    /* Reducido de 0.85 a 0.6 */
}

.results-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 20%, transparent 80%, var(--bg-dark) 100%);
}

.results-content {
    position: relative;
    z-index: 2;
}

.icon-huge {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin-bottom: 2rem;
}

.results-title {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.glass-panel-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-dim);
    padding: 3rem;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.glass-panel-dark p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 5rem auto 0;
    border-top: 1px solid rgba(187, 166, 106, 0.1);
    padding-top: 5rem;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dim), transparent);
    border: 1px solid var(--gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--gold);
    transition: var(--transition);
}

.stat-item:hover .stat-icon-wrapper {
    transform: translateY(-5px) scale(1.1);
    background: var(--gold);
    color: var(--bg-dark);
}

.stat-item h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-sans);
    /* Mejor balance para textos largos */
    font-weight: 500;
}

.stat-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 250px;
    margin: 0 auto;
}

/* --- Footer --- */
.footer {
    background: #040506;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--gold-dim);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.logo-img-footer {
    height: 360px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5)) brightness(1.3);
    /* Mantiene la sombra pero se aclara */
}

.footer-brand .tagline {
    font-size: 1.25rem;
    font-family: var(--font-serif);
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 2rem;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.icon-circle {
    width: 36px;
    height: 36px;
    background: rgba(197, 160, 89, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.icon-circle i {
    width: 16px;
    height: 16px;
}

.footer-contact-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-right: 5rem;
    /* Separación moderada del borde derecho */
}

.social-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

.tiktok-icon {
    display: block;
    transition: var(--transition);
}

.social-links a:hover .tiktok-icon {
    stroke: var(--gold);
}

/* --- Animations --- */
.content-reveal,
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.content-reveal.visible,
.animate-up.visible,
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Explicit delays for hero elements */
header .animate-up {
    animation: floatUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform: translateY(0);
    opacity: 1;
}

header .fade-in {
    animation: fadeIn 1.5s ease forwards;
    opacity: 1;
}

.delay-1 {
    transition-delay: 0.2s;
    animation-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
    animation-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
    animation-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
    animation-delay: 0.8s;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        gap: 2rem;
    }

    .hero-image {
        display: none;
        /* Ocultamos a la abogada en tablet para evitar conflicto visual extremo, o la podemos reubicar */
    }

    .glass-panel {
        max-width: 100%;
        padding-bottom: 4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .year-badge {
        right: 20px;
    }
}

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

    .mobile-break {
        display: block;
        /* Salto de línea activo solo en celulares */
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .logo-img {
        height: 70px;
        /* Logo más pequeño desde el primer instante */
    }

    .mobile-menu-btn {
        display: block;
        /* Botón de menú visible */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 2rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid var(--gold-dim);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        text-align: center;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 2rem;
    }

    .hero-text {
        margin: 0 auto 3rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

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

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

    .glass-panel {
        padding-bottom: 0;
    }

    .scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 4rem;
        /* Coloca el ícono naturalmente debajo de todo el contenido del panel */
    }
}