/* ==========================================================================
   DESIGN SYSTEM - JNOS TATTOO STUDIO
   ========================================================================== */

:root {
    --bg-dark: #0D0D0D;         /* Negro profundo industrial */
    --bg-panel: #121212;        /* Negro mate de superficie */
    --bg-card: rgba(22, 22, 25, 0.85); /* Estructura metálica translúcida */
    
    --accent: #FF5500;          /* Naranja neón primario */
    --accent-glow: rgba(255, 85, 0, 0.4);
    --accent-glow-strong: rgba(255, 85, 0, 0.8);
    
    --steel: #2A2D32;           /* Gris acero cepillado */
    --steel-light: #4A4E57;     /* Gris acero brillante */
    --concrete: #1E2022;        /* Gris hormigón oscuro */
    
    --text-white: #FFFFFF;      /* Texto de alto contraste */
    --text-muted: #B0B3B8;      /* Texto secundario de lectura */
    --text-dark: #6C727A;       /* Textos inactivos o tenues */
    
    --border-glow: 1px solid rgba(255, 85, 0, 0.3);
    --border-light: 1px solid rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--steel);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

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

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

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px var(--accent-glow), inset 0 0 5px rgba(255, 85, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 25px var(--accent-glow-strong), inset 0 0 10px rgba(255, 85, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 10px var(--accent-glow), inset 0 0 5px rgba(255, 85, 0, 0.1);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 0.99;
        filter: drop-shadow(0 0 2px var(--accent)) drop-shadow(0 0 8px var(--accent));
    }
    20%, 24%, 55% {
        opacity: 0.4;
        filter: none;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite ease-in-out;
}

/* ==========================================================================
   PROMOTIONAL BANNER
   ========================================================================== */

.promo-banner {
    background: #000;
    border-bottom: 2px solid var(--accent);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002; /* Por encima del menú principal */
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
    pointer-events: none;
}

.promo-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.promo-banner.hide {
    display: none !important;
}

/* Desplazar el header fijo hacia abajo cuando el banner promocional sea visible */
.promo-active .main-header {
    top: 42px;
}

@media (max-width: 768px) {
    .promo-active .main-header {
        top: 36px; /* Altura reducida de la barra de promo */
    }
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-content .badge {
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-family: var(--font-heading);
    padding: 2px 8px;
    font-size: 0.75rem;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.promo-content p {
    font-weight: 500;
}

.btn-banner {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.1);
}

.btn-banner:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent);
}

.close-banner {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-fast);
}

.close-banner:hover {
    color: var(--accent);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.main-header {
    height: var(--header-height);
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    object-fit: cover;
    box-shadow: 0 0 10px var(--accent-glow);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFF 60%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-call-header {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.1);
}

.btn-call-header:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* Hamburger active transformation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    height: 100vh;
    height: 100dvh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 80%; /* Para separar visualmente el logo arriba/centro y el CTA abajo */
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--accent);
    text-shadow: 0 0 8px rgba(255, 85, 0, 0.3);
    margin-bottom: 24px;
}

.hero-title-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo-neon-container {
    width: 240px;
    max-width: 70vw;
    position: relative;
    border-radius: 50%;
    padding: 10px;
    transition: var(--transition-smooth);
}

/* Simula el rótulo de neón naranja en el muro con reflejo */
.logo-neon-reflection {
    width: 100%;
    height: auto;
    border-radius: 50%;
    animation: neonFlicker 6s infinite alternate ease-in-out;
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 20px var(--accent-glow);
    border: 2px solid rgba(255, 85, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-cta-wrapper {
    width: 100%;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* CTA encapsulado con glow y borde naranja, alineado estéticamente con Home.jpeg */
.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(13, 13, 13, 0.85);
    border: 2px solid var(--accent);
    color: var(--text-white);
    padding: 18px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: var(--transition-smooth);
    animation: pulseGlow 3s infinite alternate;
}

.btn-hero-cta:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 35px var(--accent);
    transform: scale(1.02);
}

.btn-hero-cta:hover .btn-icon {
    transform: rotate(15deg) scale(1.1);
}

.btn-icon {
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator a:hover {
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION COMMON COMPONENTS
   ========================================================================== */

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

.section-header {
    margin-bottom: 60px;
    position: relative;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent);
}

.accent-line.center {
    margin: 0 auto;
}

/* ==========================================================================
   SECTION: PHILOSOPHY
   ========================================================================== */

.philosophy-section {
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.philosophy-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.philosophy-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.philosophy-text.highlight {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-white);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 30px;
}

.quote-box {
    background: rgba(30, 32, 34, 0.4);
    border-radius: 8px;
    padding: 24px;
    border: var(--border-light);
    margin: 32px 0;
    display: flex;
    gap: 16px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--steel-light);
    opacity: 0.5;
}

.quote-box blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-white);
    font-weight: 400;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon-wrapper {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: 4px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-desc strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 2px;
}

.philosophy-media {
    position: relative;
}

.media-stack {
    position: relative;
    height: 480px;
}

.media-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: var(--border-light);
    background: var(--bg-panel);
    transition: var(--transition-smooth);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-slow);
}

.media-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.card-large {
    width: 80%;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.card-large:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(255, 85, 0, 0.15);
}

.card-small {
    width: 55%;
    height: 250px;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.media-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   SECTION: PORTFOLIO
   ========================================================================== */

.portfolio-section {
    background-color: var(--bg-panel);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    background: var(--concrete);
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-white);
    background: var(--steel);
}

.filter-btn.active {
    color: var(--text-white);
    background: transparent;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.portfolio-item {
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.portfolio-item.show {
    display: block;
}

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

.portfolio-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: var(--border-light);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: var(--bg-dark);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 15%, rgba(13, 13, 13, 0.2) 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.portfolio-details {
    width: 100%;
}

.portfolio-details .tag {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 6px;
}

.portfolio-details .item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-white);
}

.btn-view-project {
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-view-project:hover {
    background: var(--text-white);
    color: #000;
}

/* Care Block (Higiene y Pieles Sensibles) */
.special-care-block {
    background: rgba(30, 32, 34, 0.35);
    border-radius: 12px;
    padding: 40px;
    border: var(--border-glow);
    box-shadow: 0 0 25px rgba(255, 85, 0, 0.03);
    display: flex;
    gap: 32px;
    align-items: center;
}

.care-icon-box {
    font-size: 3rem;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
    flex-shrink: 0;
}

.care-content h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.care-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.link-care {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-care:hover {
    color: var(--text-white);
}

.link-care i {
    transition: var(--transition-fast);
}

.link-care:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   SECTION: STUDIO & EXCLUSIVITY
   ========================================================================== */

.studio-section {
    background-color: var(--bg-dark);
}

.studio-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.studio-philosophy-text {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.exclusivity-card {
    background: rgba(18, 18, 18, 0.8);
    border: var(--border-light);
    border-radius: 8px;
    padding: 32px;
    border-left: 4px solid var(--accent);
}

.exclusivity-badge {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.exclusivity-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.exclusivity-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Carrusel de fotos del estudio */
.studio-carousel-container {
    width: 100%;
}

.studio-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: var(--border-light);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 10;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow) ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

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

.carousel-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-control {
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(5px);
    border: var(--border-light);
    color: var(--text-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.carousel-control:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}


/* ==========================================================================
   SECTION: EVENTS & WEDDINGS
   ========================================================================== */

.events-section {
    background-color: var(--bg-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.events-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.event-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(13, 13, 13, 0.85);
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: var(--transition-smooth);
    pointer-events: none;
    opacity: 1;
}

.video-container:hover .video-overlay-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px var(--accent);
}

.video-container.playing .video-overlay-btn {
    opacity: 0;
}

.events-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.events-text.highlight {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-white);
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 28px;
}

.events-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.feat-event-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feat-event-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    text-shadow: 0 0 5px var(--accent-glow);
    flex-shrink: 0;
}

.feat-event-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.btn-events-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 16px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-events-cta:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px var(--accent);
}

/* ==========================================================================
   SECTION: REVIEWS
   ========================================================================== */

.reviews-section {
    background-color: var(--bg-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.review-card {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--accent-glow-strong);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 85, 0, 0.03);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-letter {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--steel);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    border: 1px solid rgba(255, 85, 0, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 85, 0, 0.1);
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-dark);
    display: block;
}

.google-icon-review {
    width: 18px;
    height: 18px;
}

.rating-stars {
    color: var(--accent);
    font-size: 0.85rem;
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    text-shadow: 0 0 5px rgba(255, 85, 0, 0.3);
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.reputation-summary {
    text-align: center;
    background: rgba(18, 18, 18, 0.5);
    border: var(--border-light);
    border-radius: 8px;
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.reputation-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.reputation-stars span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

.stars-gold {
    color: var(--accent);
    display: flex;
    gap: 4px;
    font-size: 1.1rem;
    text-shadow: 0 0 8px var(--accent-glow);
}

.reputation-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION: FAQ ACCORDION
   ========================================================================== */

.faq-section {
    background-color: var(--bg-dark);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-panel);
    border: var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: var(--accent-glow);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 32px;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-content-inner {
    padding: 0 32px 28px 32px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 20px;
}

/* ==========================================================================
   SECTION: CONTACT & COTIZACIÓN
   ========================================================================== */

.contact-section {
    background-color: var(--bg-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.form-instructions {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 12px;
    margin-bottom: 24px;
}

/* Direct CTAs styling (replacing form) */
.contact-brand-container {
    display: flex;
    flex-direction: column;
}

.direct-ctas-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.btn-direct-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(22, 22, 25, 0.5);
    border: var(--border-light);
    border-radius: 8px;
    padding: 20px 28px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-direct-cta i {
    font-size: 2rem;
    width: 32px;
    text-align: center;
    transition: var(--transition-fast);
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-text strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
}

.cta-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hover effects for each platform */
.btn-whatsapp i {
    color: #25d366;
}

.btn-whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
    background: rgba(37, 211, 102, 0.05);
}

.btn-whatsapp:hover i {
    transform: scale(1.1) rotate(10deg);
}

.btn-phone i {
    color: var(--accent);
}

.btn-phone:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-2px);
    background: rgba(255, 85, 0, 0.05);
}

.btn-phone:hover i {
    transform: scale(1.1) rotate(15deg);
}

.btn-instagram i {
    color: #e1306c;
}

.btn-instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.2);
    transform: translateY(-2px);
    background: rgba(225, 48, 108, 0.05);
}

.btn-instagram:hover i {
    transform: scale(1.1) rotate(-10deg);
}

.contact-philosophy-notice {
    background: rgba(30, 32, 34, 0.2);
    border: var(--border-light);
    border-radius: 6px;
    padding: 18px 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-philosophy-notice i {
    font-size: 1.25rem;
    color: var(--steel-light);
}

.contact-philosophy-notice p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Info Card (Derecha) */
.info-card {
    background: var(--bg-card);
    border: var(--border-light);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.studio-status {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #28a745;
    animation: pulseRing 1.5s infinite ease-in-out;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.detail-text span {
    font-size: 0.75rem;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
    display: block;
}

.detail-text a {
    font-weight: 600;
    font-size: 1rem;
}

.detail-text a:hover {
    color: var(--accent);
}

.text-muted-italics {
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.85rem;
}

/* CTAs prioritarios dentro de la tarjeta de contacto */
.detail-item.highlighted-cta {
    background: rgba(255, 85, 0, 0.08);
    border: 1px solid rgba(255, 85, 0, 0.2);
}

.detail-item.highlighted-cta .detail-icon {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 10px var(--accent-glow);
}

.detail-item.highlighted-cta .detail-text a {
    color: var(--accent);
    font-weight: 700;
}

.detail-item.highlighted-cta.bg-green {
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.detail-item.highlighted-cta.bg-green .detail-icon {
    background: #28a745;
    color: #fff;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
}

.detail-item.highlighted-cta.bg-green .detail-text a {
    color: #28a745;
}

.btn-instagram-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 16px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.05);
}

.btn-instagram-profile:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px var(--accent);
}

/* Mapa modo oscuro simulado vectorialmente */
.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    border: var(--border-light);
    background-color: #0b0c10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 85, 0, 0.15) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    opacity: 0.7;
}

.map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 24px;
}

.map-marker-neon {
    font-size: 2.2rem;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
    margin-bottom: 12px;
    display: inline-block;
    animation: bounce 2s infinite ease-in-out;
}

.map-overlay h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.map-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.btn-map-info {
    display: inline-block;
    background: var(--steel);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: var(--border-light);
}

.btn-map-info:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 32px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}

.footer-brand span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col a:hover {
    color: var(--text-white);
    transform: translateX(3px);
}

/* Escalabilidad visual */
.future-modules a.disabled-link {
    cursor: default;
    opacity: 0.5;
}

.future-modules a.disabled-link:hover {
    color: var(--text-muted);
    transform: none;
}

.badge-soon {
    background: var(--steel);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 2px;
    text-transform: uppercase;
}

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

.legal-link {
    color: var(--text-dark);
    margin: 0 4px;
}

.legal-link:hover {
    color: var(--text-muted);
}

.dev-credits {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--steel-light);
}

/* ==========================================================================
   WHATSAPP FLOATING FAB
   ========================================================================== */

.whatsapp-fab-container {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-fab {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid var(--accent); /* Línea naranja alrededor del botón verde */
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
    box-shadow: 0 8px 35px rgba(255, 85, 0, 0.4);
}

.fab-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent); /* Anillo de pulsación en naranja */
    top: 0;
    left: 0;
    animation: pulseRing 2s infinite ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.whatsapp-tooltip {
    background: var(--bg-panel);
    border: var(--border-glow);
    border-radius: 8px;
    padding: 16px;
    width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.tooltip-badge {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.whatsapp-tooltip p {
    font-size: 0.85rem;
    color: var(--text-white);
    line-height: 1.4;
    padding-right: 15px;
}

.tooltip-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
}

.tooltip-close:hover {
    color: var(--text-white);
}

/* Tooltip triangle indicator */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bg-panel);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    bottom: -9px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--accent);
    z-index: -1;
}

/* ==========================================================================
   LIGHTBOX / VISOR MODAL
   ========================================================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-content {
    display: flex;
    max-width: 900px;
    width: 90%;
    background: var(--bg-panel);
    border: var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    width: 55%;
    max-height: 70vh;
    object-fit: cover;
    background: var(--bg-dark);
}

.lightbox-info {
    width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-tag {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.lightbox-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.btn-lightbox-inquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-lightbox-inquire:hover {
    background-color: #20ba5a;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ========================================================================== */

@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .media-stack {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .studio-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    section {
        padding: 60px 0; /* Menos espacio vacío en móviles para agilizar lectura */
    }
    
    .main-header {
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .btn-call-header span {
        display: none; /* Oculta texto, dejando solo el icono de teléfono */
    }
    
    .btn-call-header {
        padding: 8px 12px;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform var(--transition-smooth), opacity var(--transition-smooth);
        pointer-events: none;
        border-top: 1px solid rgba(255, 255, 255, 0.02);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-section {
        background-position: 30% center; /* Ajustado para centrar el lobo en vertical */
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-content {
        justify-content: center;
        gap: 40px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero-cta {
        padding: 14px 28px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .special-care-block {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        gap: 20px;
    }
    
    .care-icon-box {
        font-size: 2.5rem;
    }

    /* Portafolio en móvil: Hacer los overlays visibles por defecto para pantallas táctiles */
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 20%, rgba(8, 8, 8, 0.3) 70%, transparent 100%);
    }
    
    .btn-view-project {
        background: var(--accent);
        color: #000;
        border-color: var(--accent);
        box-shadow: 0 0 10px var(--accent-glow);
    }

    .exclusivity-card {
        padding: 24px;
    }

    .studio-carousel {
        aspect-ratio: 4 / 3; /* Formato más cuadrado y adaptado en móvil */
    }

    /* Evitar desbordamiento horizontal en reseñas de Google en pantallas estrechas */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 24px;
    }

    /* Acordeones FAQ con menos márgenes internos */
    .faq-trigger {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-content-inner {
        padding: 0 20px 20px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .lightbox-content {
        flex-direction: column;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .lightbox-img {
        width: 100%;
        height: 250px;
        max-height: 35vh;
    }
    
    .lightbox-info {
        width: 100%;
        padding: 24px;
    }
    
    .lightbox-title {
        font-size: 1.4rem;
    }
    
    .lightbox-desc {
        margin-bottom: 24px;
    }

    /* Botón flotante para cerrar el Lightbox en móvil (más grande y fácil de presionar con el pulgar) */
    .lightbox-close {
        top: 16px;
        right: 16px;
        font-size: 2.2rem;
        background: rgba(13, 13, 13, 0.7);
        backdrop-filter: blur(5px);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .whatsapp-fab {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        display: none !important; /* Oculta completamente el globo de texto en móviles */
    }

    /* Ajustes para hacer el banner promocional ultra-fino en móviles */
    .promo-banner {
        padding: 6px 36px 6px 12px;
        gap: 12px;
    }
    
    .promo-content p {
        display: none !important; /* Oculta las letras blancas descriptivas en móvil */
    }
    
    .btn-banner {
        padding: 3px 10px;
        font-size: 0.7rem;
    }
}
