/* ========================================
   MEET BEACH BAR MASPALOMAS
   Vibrant Modern · Charcoal + Coral
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --charcoal: #1A1A2E;
    --charcoal-deep: #12121F;
    --charcoal-light: #2A2A40;
    --coral: #FF6B4A;
    --coral-light: #FF8F75;
    --coral-dark: #E5553A;
    --coral-pale: #FFF0EC;
    --sand: #F5F0EB;
    --sand-light: #FAF7F4;
    --white: #FFFFFF;
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-muted: #8888A0;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    font-family: var(--font-body);
    background-color: var(--sand-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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;
}

/* --- Side Navigation --- */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--charcoal);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 24px;
    transition: transform var(--transition);
}

.nav-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.02em;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 107, 74, 0.15);
}

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

.nav-num {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    min-width: 24px;
}

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

.nav-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.social-icon:hover {
    color: var(--coral);
    background: rgba(255, 107, 74, 0.15);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-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 var(--transition);
}

.nav-overlay.active {
    opacity: 1;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    background: var(--charcoal);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    padding-left: 260px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 74, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 143, 117, 0.06) 0%, transparent 50%);
}

.hero-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 74, 0.15);
}

.geo-circle--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.geo-circle--2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    border-color: rgba(255, 107, 74, 0.1);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(255, 107, 74, 0.08);
    top: 20%;
    left: 8%;
    transform: rotate(15deg);
}

.geo-square {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 107, 74, 0.12);
    border-radius: var(--radius-sm);
    top: 60%;
    right: 15%;
    transform: rotate(45deg);
}

.geo-square--1 {
    width: 50px;
    height: 50px;
    top: 15%;
    right: 30%;
    border-color: rgba(255, 107, 74, 0.08);
}

.geo-dots {
    position: absolute;
    bottom: 15%;
    right: 5%;
    display: grid;
    grid-template-columns: repeat(4, 8px);
    gap: 12px;
}

.geo-dots::before,
.geo-dots::after {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 74, 0.25);
    border-radius: 50%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
}

.accent-word {
    color: var(--coral);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.4) 0%, transparent 40%);
}

.hero-img-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-md);
    bottom: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.3;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Sections --- */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 64px;
}

.section-num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.accent-text {
    color: var(--coral);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

/* --- Nosotros --- */
.nosotros {
    background: var(--sand-light);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.nosotros-text .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.nosotros-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.nosotros-visual {
    position: relative;
}

.visual-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 26, 46, 0.12);
}

.visual-card--1 {
    margin-bottom: 24px;
}

.visual-card--1 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.visual-card--2 {
    margin-left: auto;
    width: 75%;
}

.visual-card--2 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.visual-stat {
    position: absolute;
    bottom: -24px;
    left: 10%;
    background: var(--coral);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(255, 107, 74, 0.35);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: all var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 26, 46, 0.08);
    border-color: rgba(255, 107, 74, 0.2);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--coral-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.value-text h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.value-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Carta --- */
.carta {
    background: var(--charcoal);
    color: var(--white);
}

.carta-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.06) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.carta .section-title,
.carta .section-subtitle {
    color: var(--white);
}

.carta .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.carta-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.tab-btn.active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

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

.menu-item {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.menu-item:hover {
    background: rgba(255, 107, 74, 0.08);
    border-color: rgba(255, 107, 74, 0.2);
    transform: translateY(-2px);
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.menu-item-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    background: rgba(255, 107, 74, 0.2);
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-item-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* --- Ambiente --- */
.ambiente {
    background: var(--sand);
}

.ambiente-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 20px;
    margin-bottom: 80px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item--1 {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item--2 {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
}

.gallery-item--3 {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.gallery-item--4 {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
}

.ambiente-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 26, 46, 0.1);
    border-color: rgba(255, 107, 74, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--coral-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin: 0 auto 20px;
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Ubicación --- */
.ubicacion {
    background: var(--sand-light);
}

.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: all var(--transition);
}

.info-block:hover {
    border-color: rgba(255, 107, 74, 0.2);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.06);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--coral-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.info-block h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.info-block p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-block a {
    color: var(--coral);
    font-weight: 500;
    transition: color var(--transition);
}

.info-block a:hover {
    color: var(--coral-dark);
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule .day {
    font-weight: 500;
    color: var(--text-primary);
}

.schedule .hours {
    font-size: 14px;
    color: var(--text-muted);
}

.ubicacion-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 26, 46, 0.1);
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* --- Contacto --- */
.contacto {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
}

.contacto-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.05) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}

.contacto .section-title,
.contacto .section-subtitle {
    color: var(--white);
}

.contacto .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: rgba(255, 107, 74, 0.05);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 107, 74, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.form-success p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.contacto-extra {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extra-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
}

.extra-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.extra-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.big-phone a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--coral);
    transition: color var(--transition);
}

.big-phone a:hover {
    color: var(--coral-light);
}

.small-hint {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.3) !important;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.social-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
    background: rgba(255, 107, 74, 0.08);
}

/* --- Footer --- */
.footer {
    background: var(--charcoal-deep);
    color: var(--white);
    padding: 64px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer-geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.fg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 74, 0.06);
}

.fg-circle--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.fg-circle--2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 10%;
}

.fg-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(255, 107, 74, 0.05);
    bottom: 20%;
    right: 10%;
    transform: rotate(-20deg);
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.heart {
    color: var(--coral);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-left: 0;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 40px 24px;
        text-align: center;
        align-items: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image {
        display: none;
    }

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

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

    .ambiente-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--1,
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4 {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        height: 240px;
    }

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

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

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

@media (max-width: 768px) {
    .side-nav {
        transform: translateX(-100%);
    }

    .side-nav.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-links {
        margin-top: 24px;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .value-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .ambiente-gallery {
        grid-template-columns: 1fr;
    }

    .ambiente-features {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .carta-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        justify-content: center;
    }
}
