/* ============================================
   GALERÍA CAROUSEL - 9:16 VERTICAL
   ============================================ */

/* ABOUT SECTION CON GALERÍA */
.about-section {
    padding: 6rem 0;
    background: #FAFAFA;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #E8B4B8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #2A2A2A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.about-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* GALLERY CAROUSEL - 9:16 VERTICAL */
.gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-left: auto;
}

.gallery-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* GALLERY NAVIGATION */
.gallery-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.gallery-dot.active {
    background: #E8B4B8;
    transform: scale(1.2);
}

/* GALLERY ARROWS */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-arrow:hover {
    background: #E8B4B8;
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow:hover svg {
    stroke: white;
}

.gallery-arrow.prev {
    left: 1.5rem;
}

.gallery-arrow.next {
    right: 1.5rem;
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #2A2A2A;
    stroke-width: 2;
}

/* MOBILE RESPONSIVE */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-carousel {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-arrow {
        width: 40px;
        height: 40px;
    }
    
    .gallery-arrow.prev {
        left: 1rem;
    }
    
    .gallery-arrow.next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-carousel {
        max-width: 100%;
    }
}
