/* Kai Argazki Estudioa - Design Profesional: Negru, Alb, #BFAA8B */
/* Fonturi locale (assets/fonts) */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Montreal';
    src: url('../fonts/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Reset link colors */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

:root {
    --gold: #BFAA8B;
    --gold-dark: #9d8a70;
    --gold-light: rgba(191, 170, 139, 0.1);
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-900: #171717;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Neue Montreal', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══ HEADER ═══ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s;
    border-bottom: 1px solid var(--gray-200);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 18px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switcher a {
    text-decoration: none;
    color: var(--gray-500);
    font-weight: 700;
    padding: 5px 8px;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.lang-switcher a.active {
    color: var(--gold);
}

.lang-switcher span {
    color: var(--gray-300);
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--black);
    padding: 5px;
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    margin-top: 86px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 0 30px;
}

.hero-pretitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s both;
}

.hero-title {
    font-size: 68px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.8s 0.15s both;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 45px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s both;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: 2px solid transparent;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Manrope', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191,170,139,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ═══ SECTIONS ═══ */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 52px;
    margin-bottom: 15px;
    letter-spacing: -0.04em;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    font-weight: 400;
}

/* ═══ GALERÍA ═══ */
.section-galeria {
    background: var(--white);
}

.galeria-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 10px 22px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.galeria-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.galeria-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-100);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--white);
    gap: 10px;
}

.galeria-overlay i {
    font-size: 28px;
    color: var(--gold);
}

.galeria-overlay span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.galeria-item:hover .galeria-overlay,
.galeria-full-item:hover .galeria-overlay {
    opacity: 1;
}

/* ═══ SERVICIOS ═══ */
.section-servicios {
    background: var(--gray-50);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.servicio-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--black);
    cursor: pointer;
    transition: transform 0.3s;
}

.servicio-card:hover {
    transform: translateY(-5px);
}

.servicio-image {
    position: absolute;
    inset: 0;
}

.servicio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.5s;
}

.servicio-card:hover .servicio-image img {
    opacity: 0.4;
    transform: scale(1.05);
}

.servicio-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.servicio-content i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.servicio-content h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.servicios-nota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    padding: 20px;
    background: var(--gold-light);
    border: 1px solid var(--gold);
}

.servicios-nota i {
    color: var(--gold);
    font-size: 20px;
}

.servicios-nota p {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* ═══ SOBRE MÍ ═══ */
.section-sobre {
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-image {
    overflow: hidden;
    aspect-ratio: 3/4;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sobre-image:hover img {
    transform: scale(1.03);
}

.sobre-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.sobre-text h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.sobre-desc {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.sobre-desc p, .sobre-text p {
    margin-bottom: 15px;
    color: var(--gray-700);
    line-height: 1.9;
}

.sobre-info {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--gray-700);
}

.info-item i {
    color: var(--gold);
    font-size: 18px;
    width: 22px;
}

/* ═══ TESTIMONIOS ═══ */
.section-testimonios {
    background: var(--gray-50);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 28px;
    color: var(--gold);
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}

/* ═══ CONTACTO ═══ */
.section-contacto {
    background: var(--white);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-decoration: none;
    color: var(--black);
    align-items: flex-start;
}

.contacto-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.contacto-card.whatsapp-card {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.05);
}

.contacto-card.whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.1);
}

.contacto-card i {
    font-size: 28px;
    color: var(--gold);
    min-width: 35px;
    margin-top: 3px;
}

.contacto-card.whatsapp-card i {
    color: #25D366;
}

.contacto-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.contacto-card p {
    color: var(--gray-500);
    font-size: 15px;
}

.contacto-card small {
    color: var(--gray-500);
    font-size: 13px;
    font-style: italic;
}

.contacto-form-wrapper {
    background: var(--gray-50);
    padding: 50px;
    border: 1px solid var(--gray-200);
}

.contacto-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid var(--gray-200);
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s;
    background: var(--white);
    color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-message {
    padding: 15px;
    margin-top: 15px;
    font-weight: 600;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ═══ FOOTER ═══ */
.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: -0.01em;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo {
    height: 34px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-section p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(191,170,139,0.3);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-address {
    margin-bottom: 15px;
}

.footer-contact-info {
    margin-top: 15px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-contact-info i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.footer-whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: white;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
}

.lightbox-nav button {
    background: rgba(191,170,139,0.15);
    border: 1px solid rgba(191,170,139,0.3);
    color: white;
    width: 55px;
    height: 55px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ═══ GALERÍA FULL PAGE ═══ */
.galeria-full-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.galeria-full-section .page-header {
    padding-bottom: 40px;
}

.galeria-full-grid {
    margin-bottom: 60px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 56px;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

/* Masonry-style gallery grid - full width */
.galeria-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: 100%;
    padding: 0;
}

.galeria-full-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-100);
}

/* Masonry effect - different sizes */
.galeria-full-item:nth-child(5n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.galeria-full-item:nth-child(7n+3) {
    grid-row: span 2;
}

.galeria-full-item:nth-child(11n+5) {
    grid-column: span 2;
}

.galeria-full-item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.6s;
}

.galeria-full-item:hover img {
    transform: scale(1.08);
}

/* ═══ BREADCRUMBS ═══ */
.breadcrumbs {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
}

.breadcrumbs a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--gold);
}

/* ═══ CATEGORY / ALBUM GRIDS ═══ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    text-decoration: none;
    color: var(--white);
    border: none;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.category-card:hover .category-cover {
    transform: scale(1.1);
}

.category-cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-900);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.category-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
}

.category-meta h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.category-card:hover .category-meta h3 {
    color: var(--gold);
}

/* ═══ EMPTY STATE ═══ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-500);
}

.empty-state p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .galeria-masonry {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .galeria-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 86px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        border-top: 1px solid var(--gray-200);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .sobre-content,
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .galeria-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .galeria-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 0 4px;
    }
    
    .galeria-full-item:nth-child(5n+1),
    .galeria-full-item:nth-child(7n+3),
    .galeria-full-item:nth-child(11n+5) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .galeria-full-item:nth-child(3n+1) {
        grid-column: span 2;
    }
    
    .galeria-full-item img {
        min-height: 200px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contacto-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ═══ LEGAL PAGES ═══ */
.legal-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 48px;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--black);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 45px;
    margin-bottom: 18px;
    color: var(--black);
    letter-spacing: -0.02em;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: var(--gold-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 18px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.legal-content ul li strong {
    color: var(--black);
}

.legal-content a {
    color: var(--gold-dark);
    text-decoration: underline;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--gold);
}

.legal-date {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 14px;
}

/* Cookies table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.cookies-table th,
.cookies-table td {
    padding: 14px 18px;
    text-align: left;
    border: 1px solid var(--gray-200);
}

.cookies-table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--black);
}

.cookies-table td {
    color: var(--gray-700);
}

.cookies-table a {
    color: var(--gold-dark);
}

/* ═══ COOKIE CONSENT BANNER ═══ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: var(--white);
    z-index: 9999;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: rgba(255,255,255,0.85);
}

.cookie-content p a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 12px;
}

.cookie-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

.cookie-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* ═══ SEO INTRO TEXT ═══ */
.seo-intro {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.seo-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.seo-cta {
    font-size: 15px;
    color: var(--gold-dark);
    margin-top: 18px;
}

.seo-cta strong {
    font-weight: 600;
}

/* ═══ FOOTER LEGAL LINKS ═══ */
.footer-legal {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: rgba(255,255,255,0.2);
    margin: 0 12px;
}

/* ═══ RESPONSIVE LEGAL / COOKIES ═══ */
@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-content h2 {
        font-size: 22px;
    }
    
    .cookies-table {
        font-size: 12px;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 10px 12px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
