/**
Theme Name: AstraSweetChildOfMine
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astrasweetchildofmine
Template: astra
*/

/* Estilos para el menú */
.menu {
    display: flex;
    align-items: center;
    justify-content: center; /* Centro horizontalmente */
    overflow: hidden;
    position: relative;
    margin: 0px; /* Espacio exterior */
    width: fit-content; /* Ancho ajustado al contenido */
    transform: scale(1.3); /* Aumenta el tamaño del menú */
}

.menu--wrapper {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.menu--item {
    flex: 0 0 auto;
    margin-right: 10px; /* Ajusta la distancia entre círculos */
    scroll-snap-align: start;
    transition: transform 0.1s ease-in-out; /* Animación más rápida */
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    z-index: 1; /* Asegura que otros círculos estén detrás */
    width: 60px; /* Tamaño de los círculos */
    height: 60px;
}

.menu--item figure {
    width: 60px; /* Tamaño de las imágenes circulares (mismo que el círculo señalado) */
    height: 60px;
    border-radius: 50%;
    transition: transform 0.1s ease-in-out; /* Animación más rápida */
}

.menu--item:hover {
    transform: scale(1.2); /* Escala al pasar el cursor */
    z-index: 2; /* Prioridad visual */
}

.menu--item:not(:hover) {
    transform: scale(1); /* Escala de los círculos no seleccionados (tamaño normal) */
}

/* Estilos para las flechas de navegación */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.left {
    left: 10px; /* Ajusta la posición de la flecha izquierda */
}

.right {
    right: 10px; /* Ajusta la posición de la flecha derecha */
}
