/* ============================================
   VARIABLES CSS - Colores y Tipografía
   ============================================ */
:root {
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #e0e0e0;
    --color-text: #1a1a1a;
    --color-light-text: #666666;
    --color-rose-1: #D2A4B4;
    --color-rose-2: #c44569;
    --font-serif: 'Georgia', 'Garamond', serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESET Y ESTILOS GENERALES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
    background-attachment: fixed;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 107, 157, 0.9) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 150, 180, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 200, 220, 0.85) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 120, 160, 0.75) 1px, transparent 1px);
    background-size: 90px 90px, 130px 130px, 170px 170px, 110px 110px;
    background-position: 0 0, 20px 30px, 40px 50px, 60px 20px;
    animation: twinkleStars 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

main {
    position: relative;
    z-index: 1;
}

footer {
    position: relative;
    z-index: 1;
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-rose-1) 0%, var(--color-rose-2) 100%);
    border-bottom: none;
    box-shadow: 0 4px 15px rgba(196, 69, 105, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--color-secondary);
    text-transform: lowercase;
    margin: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.artist-alias {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-transform: capitalize;
}

.logo-img {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-secondary);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 107, 157, 0.95) 0%, rgba(196, 69, 105, 0.95) 100%);
    list-style: none;
    padding: 1rem 0;
    min-width: 250px;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    max-height: 400px;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ============================================
   HERO SECTION CON SLIDESHOW
   ============================================ */
.hero {
    display: flex;
    flex-direction: column;
    background-color: var(--color-secondary);
}

.hero-banner {
    width: 100%;
    background: #ffffff;
    border-top: 3px solid #ff6b9d;
    border-bottom: 3px solid #ff6b9d;
    padding: 2.5rem 2rem;
    text-align: center;
    z-index: 5;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 107, 157, 0.4) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 150, 180, 0.35) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 200, 220, 0.3) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 150px 150px;
    background-position: 0 0, 20px 30px, 40px 50px;
    animation: twinkleStars 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes twinkleStars {
    0% {
        opacity: 0.3;
    }
    25% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.4;
    }
    75% {
        opacity: 0.95;
    }
    100% {
        opacity: 0.3;
    }
}

/* ============================================
   HERO COLLAGE SECTION
   ============================================ */
.hero-collage {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(196, 69, 105, 0.03) 100%);
}

.collage-item {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(196, 69, 105, 0.15);
    opacity: 1;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(196, 69, 105, 0.8) 0%, rgba(255, 107, 157, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.collage-title {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.collage-year {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin: 0.5rem 0 0 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.collage-item:hover {
    transform: scale(1.05) rotateZ(1.5deg);
    box-shadow: 0 16px 40px rgba(196, 69, 105, 0.3);
    z-index: 10;
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

/* Distribuir imágenes con tamaños y posiciones variadas */
.collage-item:nth-child(1) {
    width: 25%;
    height: 35%;
    top: 0;
    left: 0;
    z-index: 5;
}

.collage-item:nth-child(2) {
    width: 30%;
    height: 40%;
    top: 25%;
    left: 24%;
    z-index: 4;
}

.collage-item:nth-child(3) {
    width: 22%;
    height: 32%;
    top: 5%;
    left: 54%;
    z-index: 3;
}

.collage-item:nth-child(4) {
    width: 28%;
    height: 38%;
    top: 35%;
    left: 15%;
    z-index: 6;
}

.collage-item:nth-child(5) {
    width: 26%;
    height: 35%;
    top: 40%;
    left: 44%;
    z-index: 5;
}

.collage-item:nth-child(6) {
    width: 24%;
    height: 40%;
    top: 20%;
    left: 75%;
    z-index: 4;
}

.collage-item:nth-child(7) {
    width: 20%;
    height: 30%;
    top: 60%;
    left: 35%;
    z-index: 3;
}

.collage-item:nth-child(8) {
    width: 23%;
    height: 35%;
    top: 55%;
    left: 60%;
    z-index: 2;
}

.collage-item:nth-child(9) {
    width: 25%;
    height: 38%;
    top: 45%;
    left: 0;
    z-index: 4;
}

.collage-item:nth-child(10) {
    width: 22%;
    height: 32%;
    top: 65%;
    left: 75%;
    z-index: 2;
}

.collage-item:nth-child(n+11) {
    width: 18%;
    height: 25%;
    z-index: 1;
}

.collage-item:nth-child(11) {
    top: 75%;
    left: 20%;
}

.collage-item:nth-child(12) {
    top: 70%;
    left: 50%;
}

.collage-item:nth-child(13) {
    top: 78%;
    left: 73%;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    flex: 1;
    width: 100%;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--color-primary);
    pointer-events: auto;
    gap: 2rem;
}

.hero-top {
    display: none;
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    animation: fadeInDown 1s ease-out;
    color: #ff6b9d !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
}

.hero-subtitle {
    display: none;
}

.welcome-text {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-primary);
    max-width: 600px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 0.95rem 2.5rem;
    background: linear-gradient(135deg, var(--color-rose-1) 0%, var(--color-rose-2) 100%);
    color: var(--color-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--color-rose-1);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--color-rose-2) 0%, var(--color-rose-1) 100%);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 69, 105, 0.4);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECCIÓN DE COLECCIONES - GALERÍA GRID
   ============================================ */
.colecciones {
    padding: 6rem 0;
    background-color: var(--color-secondary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-light-text);
    margin-bottom: 3rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
}

.artwork {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    background: rgba(255, 107, 157, 0.05);
    backdrop-filter: blur(30px);
    /*border: 1.5px solid rgba(135, 132, 132, 0.4);*/
    border: 1.5px #888888;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 
        0 8px 32px rgba(196, 69, 105, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -1px 1px rgba(196, 69, 105, 0.2);
    cursor: pointer;
}

.artwork:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.6);
    box-shadow: 
        0 16px 48px rgba(196, 69, 105, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        inset 0 -1px 1px rgba(196, 69, 105, 0.3);
    transform: translateY(-8px);
}

.artwork-header {
    padding-bottom: 5px;
}


.artwork-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 200;
    color: #555555;
    text-align: center;
    font-family: var(--font-serif);
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.artwork-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(196, 69, 105, 0.08) 100%);
    margin-bottom: 1.5rem;
    /*border: 2px solid rgba(255, 107, 157, 0.4);*/
    border-radius: 5px;
    box-shadow: 
        0 12px 32px rgba(196, 69, 105, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artwork:hover .artwork-image {
    box-shadow: 
        0 20px 48px rgba(196, 69, 105, 0.25),
        0 6px 12px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 107, 157, 0.3);
    transform: translateY(-6px);
}

.artwork:hover .artwork-image img {
    transform: scale(1.08);
}

.artwork-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.artist {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    font-style: italic;
    transition: color 0.3s ease;
}

.artwork:hover .artist {
    color: rgba(196, 69, 105, 0.7);
}

.price {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    margin: 0.3rem 0 0 0;
    line-height: 1.5;
}

/* ============================================
   SECCIÓN DE ARTISTAS
   ============================================ */
.artistas {
    padding: 6rem 0;
    background-color: #fafafa;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.artist-card {
    text-align: center;
    transition: var(--transition);
    background: rgba(255, 107, 157, 0.05);
    backdrop-filter: blur(30px);
    border: 1.5px solid rgba(255, 107, 157, 0.4);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 8px 32px rgba(196, 69, 105, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -1px 1px rgba(196, 69, 105, 0.2);
}

.artist-card:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.6);
    box-shadow: 
        0 16px 48px rgba(196, 69, 105, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        inset 0 -1px 1px rgba(196, 69, 105, 0.3);
    transform: translateY(-8px);
}

.artist-image {
    margin-bottom: 2rem;
    overflow: hidden;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 107, 157, 0.4);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(196, 69, 105, 0.2);
}

.artist-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 50%;
    max-width: 300px;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(196, 69, 105, 0.95);
    transition: color 0.3s ease;
}

.artist-card:hover h3 {
    color: rgba(196, 69, 105, 1);
}

.artist-specialty {
    font-size: 1.1rem;
    color: #ff6b9d;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.artist-card:hover .artist-specialty {
    color: #ff107d;
}

.artist-bio {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   SECCIÓN DE CONTACTO
   ============================================ */
.contacto {
    padding: 6rem 0;
    background-color: var(--color-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.info-item p {
    font-size: 1rem;
    color: var(--color-text);
}

.info-item a {
    color: var(--color-primary);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.info-item a:hover {
    border-bottom: 1px solid var(--color-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-accent);
    background-color: var(--color-secondary);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-rose-1) 0%, var(--color-rose-2) 100%);
    color: var(--color-secondary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--color-rose-1);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--color-rose-2) 0%, var(--color-rose-1) 100%);
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 69, 105, 0.4);
}

/* ============================================
   CARRUSEL MODAL PARA NAVEGACIÓN
   ============================================ */
.carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.carousel-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.carousel-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(196, 69, 105, 0.3);
    position: relative;
    animation: slideInCarousel 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInCarousel {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.carousel-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: rgba(196, 69, 105, 0.8);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.carousel-close:hover {
    color: rgba(196, 69, 105, 1);
}

.carousel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.carousel-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 157, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(196, 69, 105, 0.05) 100%);
    box-shadow: 0 16px 40px rgba(196, 69, 105, 0.2);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeInImage 0.6s ease;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.carousel-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(196, 63, 154, 0.75);
    margin: 0;
    line-height: 1.4;
}

.carousel-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(255, 107, 157, 0.05);
    border-left: 3px solid rgba(255, 107, 157, 0.6);
    border-radius: 8px;
}

.carousel-details p {
    margin: 0;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.carousel-details strong {
    color: rgba(196, 69, 105, 0.9);
    font-weight: 600;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
}

.carousel-nav-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(196, 69, 105, 0.08) 100%);
    border: 1.5px solid rgba(255, 107, 157, 0.4);
    color: rgba(196, 69, 105, 0.95);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95rem;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(196, 69, 105, 0.15) 100%);
    border-color: rgba(255, 107, 157, 0.6);
    color: rgba(196, 69, 105, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(196, 69, 105, 0.2);
}

.carousel-counter {
    font-weight: 600;
    color: rgba(196, 69, 105, 0.8);
    white-space: nowrap;
    padding: 0 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--color-accent);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--color-secondary);
    transition: var(--transition);
    font-weight: 500;
}

.social-links a:hover {
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo-img {
        width: 50px;
        height: 50px;
        margin-right: 0.8rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .artist-alias {
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #ff4d8a 0%, #d62c5f 100%);
        padding: 1.5rem;
        gap: 0.5rem;
        border-bottom: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item a {
        display: block;
        padding: 0.75rem 1rem;
        color: var(--color-secondary);
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-item a:hover {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 1.5rem;
        border-radius: 4px;
    }

    .dropdown-menu {
        display: none !important;
        position: static;
        background: rgba(255, 255, 255, 0.1) !important;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 !important;
        max-height: 300px !important;
        overflow-y: auto !important;
        margin-top: 0.5rem;
        border-radius: 4px;
        margin-left: 1rem;
        border-left: 2px solid rgba(255, 255, 255, 0.3);
    }

    .dropdown > .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li {
        list-style: none;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 0.5rem 1rem 0.5rem 1.5rem !important;
        font-size: 0.85rem;
        display: block;
        white-space: normal;
        word-wrap: break-word;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 4px;
    }

    .hero-banner {
        padding: 2rem 1.5rem;
        background: #ffffff;
        border-top: 3px solid #ff6b9d;
        border-bottom: 3px solid #ff6b9d;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-collage {
        height: 450px;
    }

    .collage-item {
        border-radius: 2px;
    }

    .collage-overlay {
        opacity: 0;
    }

    .collage-item:hover {
        transform: scale(1.06) rotateZ(1deg);
    }

    .collage-item:hover .collage-overlay {
        opacity: 1;
    }

    .collage-title {
        font-size: 0.95rem;
    }
        width: 28%;
        height: 32%;
        top: 0;
        left: 0;
    }

    .collage-item:nth-child(2) {
        width: 32%;
        height: 38%;
        top: 28%;
        left: 22%;
    }

    .collage-item:nth-child(3) {
        width: 24%;
        height: 30%;
        top: 8%;
        left: 56%;
    }

    .collage-item:nth-child(4) {
        width: 30%;
        height: 35%;
        top: 35%;
        left: 12%;
    }

    .collage-item:nth-child(5) {
        width: 28%;
        height: 32%;
        top: 38%;
        left: 44%;
    }

    .collage-item:nth-child(6) {
        width: 26%;
        height: 38%;
        top: 22%;
        left: 72%;
    }

    .collage-item:nth-child(7) {
        width: 22%;
        height: 28%;
        top: 58%;
        left: 35%;
    }

    .collage-item:nth-child(8) {
        width: 25%;
        height: 32%;
        top: 52%;
        left: 60%;
    }

    .collage-item:nth-child(9) {
        width: 27%;
        height: 35%;
        top: 43%;
        left: 0;
    }

    .collage-item:nth-child(10) {
        display: none;
    }

    .hero-content {
        min-height: 300px;
        padding: 3rem 2rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        color: var(--color-secondary);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.95);
    }

    .welcome-text {
        font-size: 1.1rem;
        color: var(--color-primary);
        max-width: 500px;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    .carousel-container {
        padding: 1.5rem;
        width: 95%;
    }

    .carousel-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-image-wrapper {
        max-width: 100%;
    }

    .carousel-title {
        font-size: 1.4rem;
    }

    .carousel-navigation {
        flex-direction: column;
        gap: 0.8rem;
    }

    .carousel-nav-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .logo-img {
        width: 45px;
        height: 45px;
        margin-right: 0.6rem;
    }

    .artist-alias {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .nav-menu {
        padding: 1rem;
        gap: 0.5rem;
    }

    .hero-collage {
        height: 350px;
    }

    .hero-banner {
        padding: 1.5rem 1rem;
        background: #ffffff;
        border-top: 3px solid #ff6b9d;
        border-bottom: 3px solid #ff6b9d;
    }

    .nav-menu {
        padding: 1rem;
        gap: 0.5rem;
        background: linear-gradient(135deg, #ff4d8a 0%, #d62c5f 100%);
    }

    .collage-overlay {
        opacity: 0;
    }

    .collage-item:hover {
        transform: scale(1.04) rotateZ(0.5deg);
    }

    .collage-item:hover .collage-overlay {
        opacity: 1;
    }

    .collage-title {
        font-size: 0.85rem;
    }

    .collage-item:nth-child(1) {
        width: 35%;
        height: 40%;
        top: 0;
        left: 0;
    }

    .collage-item:nth-child(2) {
        width: 38%;
        height: 42%;
        top: 32%;
        left: 20%;
    }

    .collage-item:nth-child(3) {
        width: 28%;
        height: 35%;
        top: 10%;
        left: 58%;
    }

    .collage-item:nth-child(4) {
        width: 32%;
        height: 38%;
        top: 38%;
        left: 10%;
    }

    .collage-item:nth-child(5) {
        width: 30%;
        height: 35%;
        top: 40%;
        left: 42%;
    }

    .collage-item:nth-child(6) {
        width: 28%;
        height: 40%;
        top: 25%;
        left: 70%;
    }

    .collage-item:nth-child(7),
    .collage-item:nth-child(8),
    .collage-item:nth-child(9),
    .collage-item:nth-child(10) {
        display: none;
    }

    .hero-content {
        min-height: 250px;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-bottom {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
        color: var(--color-secondary);
    }

    .hero-subtitle {
        display: none;
    }

    .welcome-text {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.8;
        color: var(--color-primary);
        max-width: 100%;
        margin-bottom: 0.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }

    .carousel-container {
        padding: 1rem;
        width: 98%;
        border-radius: 16px;
    }

    .carousel-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-image-wrapper {
        aspect-ratio: 1;
    }

    .carousel-title {
        font-size: 1.2rem;
    }

    .carousel-details {
        padding: 1rem;
        gap: 0.6rem;
    }

    .carousel-details p {
        font-size: 0.9rem;
    }

    .carousel-nav-btn {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .carousel-counter {
        font-size: 0.9rem;
    }

    .carousel-close {
        font-size: 1.8rem;
        top: 0.8rem;
        right: 1rem;
    }
}

/* ============================================
   ANIMACIONES ADICIONALES
   ============================================ */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   GLIGHTBOX CUSTOMIZACIÓN
   ============================================ */
.glightbox-container {
    background: rgba(0, 0, 0, 0.95);
}

.glightbox-container .gslide-image img,
.glightbox-container .gslide-video {
    max-height: 90vh;
}

.glightbox-container .gclose,
.glightbox-container .gprev,
.glightbox-container .gnext {
    background: linear-gradient(135deg, var(--color-rose-1) 0%, var(--color-rose-2) 100%);
    color: white;
    border-radius: 50%;
}

.glightbox-container .gclose:hover,
.glightbox-container .gprev:hover,
.glightbox-container .gnext:hover {
    background: linear-gradient(135deg, var(--color-rose-2) 0%, var(--color-rose-1) 100%);
}

/* Enlace de galería sin subrayado */
.artwork-image a {
    text-decoration: none;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================
   GLIGHTBOX Y DATOS DE OBRA
   ============================================ */
.glightbox-container {
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999 !important;
}

.glightbox-container .gslide-image img {
    max-height: 80vh;
    object-fit: contain;
    z-index: 9999 !important;
}

.glightbox-container .gclose,
.glightbox-container .gprev,
.glightbox-container .gnext {
    background: linear-gradient(135deg, var(--color-rose-1) 0%, var(--color-rose-2) 100%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.glightbox-container .gclose:hover,
.glightbox-container .gprev:hover,
.glightbox-container .gnext:hover {
    background: linear-gradient(135deg, var(--color-rose-2) 0%, var(--color-rose-1) 100%);
    transform: scale(1.1);
}

.glightbox-container .gslide-description {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.95) 0%, rgba(142, 68, 173, 0.95) 100%);
    border: 2px solid rgba(200, 140, 255, 0.6);
    padding: 2rem;
    margin-top: 1.5rem;
    border-radius: 12px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 12px 40px rgba(155, 89, 182, 0.4);
    backdrop-filter: blur(10px);
}

.artwork-description {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    line-height: 1.8;
}

.artwork-description p {
    margin: 0.7rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.artwork-description strong {
    color: var(--color-rose-1);
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}

.artwork .year {
    font-size: 0.85rem;
    color: var(--color-rose-1);
    font-weight: 500;
}
