/* --- START OF MODIFIED FILE style.css --- */
/* ==================== VARIABLES Y ESTILOS GLOBALES ==================== */
:root {
    --bg-dark: #121212;
    --bg-light: #FFFFFF;
    --accent-orange: #C86A46;
    --text-light: #FFFFFF;
    --text-dark: #222222;
    --text-muted: #888888;
    --border-color: rgba(255, 255, 255, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-dark);
    overflow-x: hidden;
}
body.nav-open {
    overflow: hidden;
}

h1, h3 { font-weight: 700; }
h1 { font-size: 3.5rem; color: var(--text-light); }
h2 { font-size: 2.5rem; font-weight: 700; }
p { line-height: 1.7; color: #cecece; }
a { text-decoration: none; color: inherit; }
section { padding: 100px 5%; }

/* ========================================================== */
/* === ESTILOS DE BOTONES UNIFICADOS Y MEJORADOS === */
/* ========================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--text-light);
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: var(--accent-orange);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 106, 70, 0.25);
}

#contact .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline { }
.btn-solid {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}
.btn-solid:hover {
    background-color: #a75533;
    border-color: #a75533;
    box-shadow: none;
}


/* ==================== ESTILOS DE TÍTULOS DE SECCIÓN ==================== */
.centered-title {
    text-align: center; margin-bottom: 60px;
    position: relative; color: var(--text-dark);
}
.centered-title::after {
    content: ''; position: absolute; bottom: -15px; left: 50%;
    transform: translateX(-50%); width: 80px; height: 3px;
    background-color: var(--accent-orange);
}
.section-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 60px; gap: 30px;
}
.header-line { height: 3px; background-color: var(--accent-orange); flex-grow: 1; }
.section-header h2 { flex-shrink: 0; }
#works .section-header h2 { color: var(--text-dark); }
#contact .section-header h2 { color: var(--text-light); }

/* ==================== HEADER / NAV ==================== */
.main-header {
    position: absolute; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between;
    align-items: center; padding: 20px 5%; z-index: 1000;
}
.logo { display: flex; align-items: center; gap: 15px; font-size: 0.8rem; color: var(--text-muted); }
.logo img {
    height: 60px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.lang-selector {
    display: flex; align-items: center; gap: 30px; 
    color: var(--text-light); font-weight: 500;
}
.lang-selector a {
    color: var(--text-light); 
    transition: color 0.3s;
}
.lang-selector a:hover {
    color: var(--accent-orange);
}
.header-controls {
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 15px;
}
.music-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-light);
}
.music-btn .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-light);
    border-radius: 50px;
    padding: 8px 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.music-btn:hover .icon-wrapper {
    border-color: var(--accent-orange);
    background-color: rgba(200, 106, 70, 0.2);
}
.music-btn .icon-mute { display: none; }
.music-btn .icon-music { display: block; }
.music-btn.playing .icon-mute { display: block; }
.music-btn.playing .icon-music { display: none; }
.hamburger {
    display: block;
    width: 30px; height: 24px; position: relative;
    background: none; border: none; cursor: pointer;
}
.hamburger span {
    display: block; position: absolute; left: 0;
    width: 100%; height: 3px; background-color: var(--text-light);
    border-radius: 3px; transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(135deg); }
.hamburger.active span:nth-child(2) { opacity: 0; left: -30px; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-135deg); }


/* ==================== HERO SECTION ==================== */
.hero-text h1 .cursor {
    display: inline-block;
    color: var(--accent-orange);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#hero {
    height: 100vh;
    background-image: linear-gradient(to right, rgba(18, 18, 18, 0.9) 30%, rgba(18, 18, 18, 0.1) 100%), url('images/Image_fx (3).jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-content { display: flex; align-items: center; gap: 50px; }
.social-icons {
    display: flex; flex-direction: column; gap: 25px; align-items: center;
    position: relative; padding: 50px 0;
}
.social-icons::before, .social-icons::after {
    content: ''; position: absolute; left: 50%;
    transform: translateX(-50%); width: 1px; background-color: rgba(255, 255, 255, 0.6);
}
.social-icons::before { height: 150px; bottom: 100%; }
.social-icons::after { height: 150px; top: 100%; }
.social-icons a { color: rgba(255, 255, 255, 0.8); transition: color 0.3s ease; }
.social-icons a:hover { color: #FFFFFF; }
.hero-text { max-width: 500px; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text p { margin-bottom: 30px; font-size: 1.1rem; }
.scroll-down-arrow {
    position: absolute; bottom: 30px; left: 50%;
    color: white; animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -15px); }
    60% { transform: translate(-50%, -7px); }
}

/* ==================== SERVICES SECTION ==================== */
#services { background-color: var(--bg-light); }
.services-container { display: flex; justify-content: space-around; gap: 30px; flex-wrap: wrap; }
.service-card { flex-basis: 22%; text-align: center; padding: 20px; }
.service-card svg {
    color: var(--accent-orange);
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-card:hover svg {
    transform: scale(1.15) rotate(-8deg);
}

.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--text-dark); font-size: 0.9rem; }

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}
.about-text {
    flex: 1.2;
}
.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}
.stat-item {
    text-align: center;
}
.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: inline-block;
}
.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
.about-images-container {
    flex: 1;
    position: relative;
    min-height: 550px; 
    cursor: pointer; 
}

.image-card {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    background-color: #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card-1 {
    width: 85%;
    height: 85%;
    bottom: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(100%);
    border: none;
}

.image-card-2 {
    width: 75%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
    filter: grayscale(0%);
    border: 6px solid var(--bg-light);
}

.about-images-container.swapped .image-card-1 {
    width: 75%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 2;
    filter: grayscale(0%);
    border: 6px solid var(--bg-light);
}

.about-images-container.swapped .image-card-2 {
    width: 85%;
    height: 85%;
    bottom: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(100%);
    border: none;
}

.about-images-container:hover .image-card-1 {
    transform: translate(-5px, 5px) scale(1.02);
}
.about-images-container:hover .image-card-2 {
    transform: translate(5px, -5px) scale(1.02);
}

/* ==================== WORKS SECTION ==================== */
#works { 
    background-color: var(--bg-light); 
    text-align: center; 
    padding-bottom: 100px;
}

.works-gallery-viewport {
    position: relative;
    width: 100%;
    overflow: hidden; 
    margin-bottom: 50px;
}

.works-gallery {
    display: flex;
    width: 166.666%; 
    position: relative;
}

.gallery-item {
    width: 20%; 
    padding: 0 15px;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    filter: grayscale(100%);
    transform: scale(1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Estado por defecto: imagen del medio a color y ampliada */
.works-gallery .gallery-item:nth-child(2) img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Al pasar el mouse por el contenedor, todas las imágenes se resetean */
.works-gallery-viewport:hover .gallery-item img {
    filter: grayscale(100%);
    transform: scale(1);
}

/* Solo la imagen sobre la que está el mouse se pone a color y se amplía */
.works-gallery-viewport .gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


#works .btn {
    background-color: var(--bg-light);
    border-color: var(--accent-orange);
    color: var(--text-dark);
    font-weight: 500;
    padding: 14px 40px;
}

#works .btn:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 106, 70, 0.2);
}


/* ==================== CONTACT SECTION ==================== */
#contact {
  background: radial-gradient(ellipse at center, #2a2a2a 0%, var(--bg-dark) 70%);
    overflow: hidden; 
}
#contact .section-header h2 {
    color: var(--text-light);
}
#contact .whatsapp-cta {
    margin-top: 20px; 
}
.whatsapp-cta {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.whatsapp-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}


/* ==================== FOOTER ==================== */
.main-footer-bottom {
    background-color: #0c0c0c; color: var(--text-muted); padding: 40px 5%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 30px;
}
.footer-logo-area, .footer-links-area, .footer-action-area { display: flex; align-items: center; gap: 20px; }
.footer-contact { display: flex; align-items: center; gap: 10px; }
.footer-social-icons { display: flex; gap: 15px; }
.footer-social-icons a { color: var(--text-muted); }
.footer-social-icons a:hover { color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; border-left: 1px solid var(--border-color); padding-left: 20px; }

/* ========================================================== */
/* === RESPONSIVE DESIGN === */
/* ========================================================== */

@media (max-width: 1024px) {
    .services-container {
        justify-content: center;
    }
    .service-card {
        flex-basis: 45%;
        margin-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .hamburger { display: block; }
    .music-btn { display: none !important; }
    .main-nav {
        position: fixed; top: 0; right: -100%;
        left: auto; 
        transform: none;
        width: 100%; height: 100vh;
        background-color: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(5px);
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        gap: 40px; transition: right 0.4s ease-in-out;
        z-index: 1000;
    }
    .main-nav.active { right: 0; }
    .lang-selector { flex-direction: column; font-size: 1.5rem; }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    /* MODIFICADO: Centrado solo para móvil/tablet */
    #hero {
        justify-content: center;
    }

    .hero-content { 
        flex-direction: column-reverse; 
        text-align: center; 
        gap: 40px; 
        padding: 160px 5% 100px;
        width: 100%;
        box-sizing: border-box;
    }
    .social-icons { 
        flex-direction: row;
        padding: 0;
        gap: 30px;
        justify-content: center;
    }
    .social-icons::before, .social-icons::after { display: none; }
    
    .about-content { flex-direction: column; }
    .about-images-container {
        width: 90%;
        margin-top: 80px; 
        min-height: 40vh;
    }

    .works-gallery-viewport { cursor: default; }
    .works-gallery {
        flex-direction: column;
        width: 100%;
        transform: none !important;
    }
    .gallery-item {
        width: 90%;
        max-width: 500px;
        margin: 0 auto 30px auto;
        padding: 0;
    }
    .gallery-item img { height: auto; }
    #works .btn { margin-top: 20px; }
}

@media (min-width: 993px) {
    .hamburger { display: none; }
    .music-btn { display: block; }
}

@media (max-width: 768px) {
    section { padding: 80px 5%; }
    .service-card { flex-basis: 100%; }
    .main-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .footer-logo-area {
        flex-direction: column;
        gap: 20px;
    }
    .footer-links-area {
        flex-direction: column;
        gap: 25px;
    }
    .footer-social-icons { justify-content: center; }
    .footer-legal {
        flex-direction: column;
        gap: 15px;
        border-left: none;
        padding-left: 0;
    }
    .section-header { flex-direction: column; text-align: center; }
    .header-line { width: 80px; }
    
    .hero-text { 
        margin-top: 0;
    }
    .rotating-circle.circle-inner,
    .rotating-circle.circle-middle { display: none; }
    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    #contact { background-attachment: scroll; }
    
    h1 {
        font-size: clamp(2.2rem, 9.5vw, 2.8rem);
        line-height: 1.25;
    }
}
@media (max-height: 700px) {
    .scroll-down-arrow {
        display: none;
    }
}

/* ==================== ESTILOS PARA CÍRCULOS ANIMADOS ==================== */
.rotating-circles-container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vh; 
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.rotating-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  width: 60vh;
  height: 60vh;
}
.marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--deg)) translateY(calc(var(--radius) * -1));
}
.marker::before {
  content: '+';
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.marker::after {
  content: var(--num);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(calc(var(--deg) * -1));
  font-weight: 500;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* ==================== ESTILOS PARA CURSOR PERSONALIZADO ==================== */
body, a, button, .works-gallery img {
    cursor: none;
}
.cursor-container {
    --size: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--size);
    height: var(--size);
    z-index: 9999;
    pointer-events: none; 
    transform: translate(-50%, -50%); 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.3s ease, height 0.3s ease;
}
.cursor-dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    background-color: transparent;
    transition: transform 0.3s ease-out, background-color 0.3s ease-out, border-color 0.3s ease-out;
}
.cursor-text {
    position: absolute;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}
.cursor-container.gallery-hover {
    --size: 120px;
}
.cursor-container.gallery-hover .cursor-dot {
    transform: scale(1);
    background-color: rgba(200, 106, 70, 0.4);
    border-color: rgba(200, 106, 70, 0.8);
}
.cursor-container.gallery-hover .cursor-text {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}
.cursor-container.link-hover .cursor-dot {
    transform: scale(1.5); 
    background-color: var(--accent-orange);
}

/* --- INICIO: CORRECCIÓN CURSOR EN MÓVIL --- */
/* Oculta con CSS estándar para la mayoría de dispositivos táctiles */
@media (hover: none) {
    .cursor-container { display: none !important; }
    body, a, button, .works-gallery img, .project-image-wrapper { cursor: auto !important; }
}

/* Oculta con JS fallback para dispositivos que no soportan bien (hover: none) */
.is-touch-device .cursor-container {
    display: none !important;
}
.is-touch-device body,
.is-touch-device a,
.is-touch-device button,
.is-touch-device .works-gallery img,
.is-touch-device .project-image-wrapper {
    cursor: auto !important;
}
/* --- FIN: CORRECCIÓN CURSOR EN MÓVIL --- */


/* ========================================================== */
/* === ESTILOS PARA TRANSICIÓN DE PÁGINA === */
/* ========================================================== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 10000;
    transform-origin: bottom;
    transform: scaleY(0);
    pointer-events: none;
}


/* ========================================================== */
/* === ESTILOS PARA PÁGINA DE GALERÍA Y LIGHTBOX (ACTUALIZADOS) === */
/* ========================================================== */

#full-gallery-section {
    background: radial-gradient(ellipse at center, #2e2e2e 0%, #1a1a1a 80%);
}

.section-title-light {
    color: var(--text-light);
}

.gallery-projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.project-section {
    margin-bottom: 80px;
}

.project-title {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.project-carousel-viewport {
    position: relative;
    overflow: hidden;
    margin: 0 -10px; /* Compensa el padding de los items */
}

.project-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    width: calc(100% / 3); /* Muestra 3 por defecto */
    padding: 0 10px;
}

.project-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(1);
}

.project-image-wrapper:hover img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 10px; /* Ajustado por el padding */
    right: 10px; /* Ajustado por el padding */
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    text-align: left;
}

.project-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.image-overlay p {
    font-size: 1rem;
    color: #ddd;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.project-image-wrapper:hover .image-overlay h4,
.project-image-wrapper:hover .image-overlay p {
    transform: translateY(0);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}
.project-carousel-viewport:hover .carousel-nav-btn {
    opacity: 1;
}
.carousel-nav-btn:hover {
    background: var(--accent-orange);
}
.carousel-nav-btn.prev { left: 25px; }
.carousel-nav-btn.next { right: 25px; }
.carousel-nav-btn:disabled {
    opacity: 0.2 !important;
    cursor: not-allowed;
}


#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}
#lightbox-overlay.visible {
    opacity: 1;
    visibility: visible;
}
#lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}
#lightbox-description {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}
.lightbox-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    padding: 10px 18px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    line-height: 1;
}
.lightbox-control:hover { background: var(--accent-orange); }
#lightbox-close { top: 25px; right: 25px; font-size: 2.5rem; transform: none; }
#lightbox-prev { left: 25px; }
#lightbox-next { right: 25px; }

.cursor-container.zoom-hover { --size: 100px; }
.cursor-container.zoom-hover .cursor-dot {
    background-color: rgba(200, 106, 70, 0.4);
    border-color: rgba(200, 106, 70, 0.8);
}
.cursor-container.zoom-hover .cursor-text {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
    content: "Ver";
}

@media (max-width: 992px) {
    .project-image-wrapper {
        width: calc(100% / 2); /* Muestra 2 en tablets */
    }
}

@media (max-width: 768px) {
    .project-image-wrapper {
        width: 100%; /* Muestra 1 en móviles */
    }
    .lightbox-control { font-size: 1.5rem; padding: 8px 14px; }
    #lightbox-prev { left: 10px; }
    #lightbox-next { right: 10px; }
    #lightbox-close { top: 15px; right: 15px; }
}