:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #888888;
    --accent: #f0f0f0;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1 { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: clamp(45px, 8vw, 90px); 
    line-height: 0.85; font-weight: 300; 
}
h2 { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 65px; 
    margin: 10px 0; 
}
em { 
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic; 
    text-transform: lowercase; 
}
strong { 
    font-weight: 600; 
    color: var(--white); 
}

.small-tag { 
    font-size: 11px; 
    letter-spacing: 5px; 
    color: var(--gray); 
    margin-bottom: 20px; 
    text-transform: uppercase; 
}
.desc { 
    font-size: 15px; 
    font-weight: 200; 
    color: #bbb; 
    line-height: 1.8; 
    max-width: 450px; 
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.logo-img { 
    height: 60px; 
    width: auto; 
}

.nav-right { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
}
.nav-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: 0.3s;
}
.nav-right a:hover { 
    color: var(--gray); 
}

.btn-nav {
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 20px;
}

.hero-split { 
    display: flex; 
    height: 90vh; 
    min-height: 600px; 
}
.hero-text-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
}
.hero-img-side { 
    width: 50%; 
    overflow: hidden; 
}
.hero-img-side img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 1.5s ease; 
}
.hero-img-side:hover img { 
    transform: scale(1.05); 
}

.btn-outline {
    display: inline-block;
    border: 1px solid white;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    margin-top: 40px;
    transition: all 0.4s ease;
    width: fit-content;
}
.btn-outline:hover { 
    background: white; 
    color: black;
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(255,255,255,0.1); 
}

.about-grid { 
    display: flex; 
    padding: 100px 8%; 
    gap: 60px; 
    align-items: center; 
}
.about-img { 
    width: 45%; 
}
.about-img img { 
    width: 100%; 
    border-radius: 2px; 
}
.about-text { 
    width: 55%; 
}
.horarios {
    margin-top: 25px; 
    border-left: 2px solid white;
    padding-left: 20px; 
    font-size: 14px; 
}

.map-section { 
    width: 100%; 
    line-height: 0; 
    filter: grayscale(1) invert(0.9) contrast(1.2); 
    transition: 0.5s; 
}
.map-section:hover { 
    filter: grayscale(0) invert(0); 
}

.footer-simple { 
    padding: 80px 5%; 
    text-align: center; 
    border-top: 1px solid #1a1a1a;
}
.footer-brand { 
    font-size: 12px; 
    letter-spacing: 5px; 
    color: var(--gray); 
    margin-top: 15px; 
}
.social-links { 
    margin-top: 20px; 
    font-size: 10px; 
    letter-spacing: 2px; 
}
.social-links a { 
    color: white; 
    text-decoration: none;
    margin: 0 10px; 
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.whatsapp-float:hover { 
    transform: scale(1.1); 
}
.whatsapp-float img { 
    width: 32px; 
}

.gallery-section {
    padding: 120px 8%;
    background-color: var(--black);
    border-top: 1px solid #1a1a1a;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.desc-centered {
    font-size: 15px;
    font-weight: 200;
    color: #bbb;
    line-height: 1.8;
    margin-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background-color: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    filter: grayscale(10%);
}

@media (min-width: 769px) {
    .item-v-2 { grid-row: span 2; }
    .item-h-2 { grid-column: span 2; }
}

.gallery-item:hover img {
    transform: scale(1.08) rotate(1deg);
    filter: grayscale(0%);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.item-overlay span {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

@media (max-width: 768px) {
    .main-nav { padding: 15px 6%; }
    .logo-img { height: 45px; }
    .nav-right { display: none; }

    .hero-split { 
        flex-direction: column; 
        height: auto; 
        min-height: 100svh;
    }
    .hero-img-side { 
        width: 100%;
        height: 50vh; 
        order: -1; 
    }
    .hero-text-side { 
        width: 100%; 
        padding: 50px 30px; 
        text-align: center;
        align-items: center;
    }
    h1 { font-size: 48px; }
    .btn-outline { padding: 16px 35px; width: 100%; max-width: 280px; }

    .gallery-section { padding: 80px 15px; }
    .gallery-header h2 { font-size: 45px; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 8px;
    }
    .item-v-2, .item-h-2 { grid-row: span 1; grid-column: span 1; }
    
    .item-h-2 { grid-column: span 2; height: 200px; }

    .about-grid { 
        flex-direction: column;
        padding: 80px 30px; 
        gap: 40px;
    }
    .about-img, .about-text { width: 100%; text-align: center; }
    .about-text h2 { font-size: 50px; }
    .horarios { border-left: none; border-top: 1px solid white; padding: 20px 0 0 0; }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 19px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .item-h-2 { grid-column: span 1; height: 250px; }
}