/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-950: #042f2e;
    --teal-800: #0f5152;
    --teal-700: #1a7a7d;
    --teal-500: #2bb5b8;
    --teal-400: #52c7c9;
    --teal-100: #daf0f0;
    --slate-950: #0a0f14;
    --slate-900: #0f1720;
    --slate-800: #152030;
    --slate-700: #1e2d42;
    --slate-600: #2a3f5c;
    --gold-500: #c9a84c;
    --gold-400: #d4b96a;
    --gold-300: #e0cc8a;
    --gold-600: #a8872e;
    --sidebar-width: 260px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--slate-950);
    color: #e2e8f0;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--gold-400);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #f8fafc;
    margin-bottom: 24px;
}

.section-text {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.max-w-xl {
    max-width: 560px;
}

.mb-16 {
    margin-bottom: 64px;
}

.text-gold-400 {
    color: var(--gold-400);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: #0a0f14;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #f8fafc;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    background: rgba(212, 185, 106, 0.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
}

/* ===== SIDE NAVIGATION ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 32px 0;
    transition: transform 0.4s var(--transition-smooth);
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 24px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    text-decoration: none;
}

.sidebar-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-100);
    flex-shrink: 0;
}

.sidebar-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f8fafc;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #64748b;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.sidebar-link:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-link.active {
    color: var(--gold-400);
    background: rgba(212, 185, 106, 0.08);
}

.sidebar-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: var(--gold-400);
    border-radius: 0 4px 4px 0;
}

.sidebar-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.sidebar-link.active svg {
    opacity: 1;
}

.sidebar-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-copy {
    font-size: 0.75rem;
    color: #475569;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #64748b;
    transition: color 0.3s;
}

.sidebar-phone:hover {
    color: var(--gold-400);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--slate-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: all 0.3s;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: all 0.3s var(--transition-smooth);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.active {
    opacity: 1;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 20, 0.92) 0%,
        rgba(10, 15, 20, 0.75) 40%,
        rgba(4, 47, 46, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 0 48px;
    animation: fadeUp 1s var(--transition-smooth) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal-300);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-400);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: #f8fafc;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #64748b;
}

.hero-detail svg {
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: #475569;
    animation: bounce 2s infinite;
    transition: color 0.3s;
}

.scroll-indicator:hover {
    color: var(--gold-400);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== NOSOTROS ===== */
.nosotros-section {
    background: var(--slate-950);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.nosotros-images {
    position: relative;
}

.nosotros-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.nosotros-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.nosotros-img-main:hover img {
    transform: scale(1.03);
}

.nosotros-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--slate-950);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.nosotros-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-img {
    border-radius: 12px;
}

.nosotros-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* ===== CARTA ===== */
.carta-section {
    background: linear-gradient(180deg, var(--slate-950) 0%, var(--slate-900) 50%, var(--slate-950) 100%);
}

.carta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.carta-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.carta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.carta-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 185, 106, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carta-card:hover::before {
    opacity: 1;
}

.carta-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-300);
    margin-bottom: 24px;
}

.carta-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.carta-card-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.carta-card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.carta-card-list li {
    font-size: 0.88rem;
    color: #64748b;
    padding-left: 16px;
    position: relative;
}

.carta-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-500);
    opacity: 0.6;
}

/* ===== GALERIA ===== */
.galeria-section {
    background: var(--slate-950);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.galeria-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.galeria-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.galeria-item--wide {
    grid-column: span 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.galeria-item:hover .galeria-item-overlay {
    opacity: 1;
}

.galeria-item-overlay span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: #f8fafc;
}

/* ===== HORARIO ===== */
.horario-section {
    background: linear-gradient(180deg, var(--slate-950) 0%, var(--slate-900) 100%);
}

.horario-table {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.horario-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s;
}

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

.horario-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.horario-row--closed {
    opacity: 0.5;
}

.horario-dia {
    font-weight: 500;
    color: #e2e8f0;
}

.horario-hora {
    color: #64748b;
    font-size: 0.9rem;
}

.horario-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.horario-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
}

.horario-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.horario-address svg {
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 2px;
}

.horario-address-name {
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 4px;
}

.horario-address-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ===== CONTACTO ===== */
.contacto-section {
    background: var(--slate-950);
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s;
}

.contacto-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 185, 106, 0.15);
}

.contacto-item-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-300);
    flex-shrink: 0;
}

.contacto-item-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    margin-bottom: 6px;
}

.contacto-item-value {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.contacto-item-value a {
    transition: color 0.3s;
}

.contacto-item-value a:hover {
    color: var(--gold-400);
}

.contacto-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--teal-800);
    border-color: var(--teal-700);
    color: var(--teal-200);
}

/* ===== FORM ===== */
.contacto-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #e2e8f0;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #475569;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-400);
    background: rgba(212, 185, 106, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 185, 106, 0.1);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: #4ade80;
    font-size: 0.9rem;
}

.form-success svg {
    flex-shrink: 0;
    color: #4ade80;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-950);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--gold-400);
}

.footer-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: #475569;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 220px;
    }

    .main-content {
        margin-left: var(--sidebar-width);
    }

    .grid-2 {
        gap: 48px;
    }

    .hero-content {
        padding: 0 32px;
    }
}

@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .overlay.active {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nosotros-images {
        order: -1;
        max-width: 500px;
    }

    .nosotros-img-secondary {
        right: -16px;
        bottom: -24px;
    }

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

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

    .galeria-item--large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .galeria-item--wide {
        grid-column: span 2;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 72px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        justify-content: center;
    }

    .nosotros-img-secondary {
        width: 60%;
        right: -8px;
        bottom: -16px;
    }

    .nosotros-stats {
        gap: 20px;
    }

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

    .galeria-item--large,
    .galeria-item--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .contacto-form {
        padding: 24px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

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