/* Estilos generales y reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

#carrousel {
    display: flex;
    z-index: 1000;
    height: 230px;
    width: 100%;

    background-color: #444;
}

img {
    width: 280px;
    height: 200px;
    margin-top: 10px;
    margin-left: 8px;
    margin-right: 8px;
}

p {
    text-align: center; 
    color: #888; 
    margin-top: 16px; 
    font-size: 1.2em;
}

a {
    text-decoration: none;
    color: #fff;
    
}

body, html {
    height: 100%;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Para el movimiento suave entre secciones */
}

/* Capa de fondo para el efecto Parallax de puntos */
#parallax-dots {
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    /* Patrón de puntos usando gradientes radiales */
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    /* Máscara para que los puntos solo se vean arriba y se difuminen hacia abajo */
    -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 60%);
    mask-image: radial-gradient(ellipse at top, black 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Hexágonos decorativos (Simplificados con CSS pseudo-elementos) */
.hex-bg {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100vh;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="103.923" viewBox="0 0 60 103.923" xmlns="http://www.w3.org/2000/svg"><path d="M30 0l25.98 15v30L30 60 4.02 45V15z" stroke="rgba(255,255,255,0.2)" stroke-width="1" fill="none"/></svg>');
    z-index: 0;
    pointer-events: none;
}

.hex-bg.left { left: -100px; }
.hex-bg.right { right: -100px };

/* Contenedor principal de las secciones */
.sections-container {
    position: relative;
    z-index: 1;
}

/* Estilo de cada sección (para probar la navegación) */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px; /* Espacio para la barra de navegación */
} 

/* Estilos específicos del Logo */
.logo-container {
    text-align: center;
    user-select: none;
}

.logo {
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 5px;
}

.logo .bold {
    font-weight: 700;
}

.logo .dot {
    color: #FFD700; /* Punto amarillo */
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #cccccc;
}

/* Barra de navegación inferior (Dock) */
.dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Íconos del Dock */
.dock a {
    color: #000000;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Efecto de agrandado al pasar el mouse (Hover) */
.dock a:hover {
    transform: scale(1.4); /* Agranda el ícono */
    color: #444; /* Cambia levemente el color */
}

/* Puntitos blancos al lado de la barra */
.dock::before, .dock::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.dock::before { left: -20px; }
.dock::after { right: -20px; }
