body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    /* Smooth scrolling for anchor links */
}

/* Custom scrollbar for subtle appearance */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #EA4E1B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6F3B;
}

/* Galería Modal Responsive */
#galleryModal .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0.15em 0.6em;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#galleryModal .gallery-arrow:hover,
#galleryModal .gallery-arrow:focus {
    background: #EA4E1B;
    color: #fff;
}
#galleryModal .gallery-arrow i {
    pointer-events: none;
}
#galleryModal .gallery-arrow.left {
    left: 10px;
}
#galleryModal .gallery-arrow.right {
    right: 10px;
}
#galleryModal #galleryImages {
    width: 100%;
    max-width: 600px;
    min-width: 260px;
    height: 320px;
    max-height: 480px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent; /* fondo completamente transparente */
    border-radius: 1rem;
    overflow: hidden;
}
/* Elimina el fondo blanco de img/video y suaviza el borde */
#galleryModal img,
#galleryModal video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
    display: block;
    background: transparent;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
@media (max-width: 700px) {
    #galleryModal .gallery-arrow {
        font-size: 1.5rem;
        padding: 0.1em 0.5em;
    }
    #galleryModal #galleryImages {
        height: 140px; /* antes 200px */
        min-width: 100px;
        max-width: 95vw;
    }
    #galleryModal .relative.bg-gray-900 {
        max-width: 85vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}