/* css/styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    overflow-x: hidden;
    background-color: #0a0a0a;
}


/* Contenedor principal */
.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
    background-image: url(../assets/images/background.jpg);
    background-size: cover;
}

/* Logotipo */
.logo-container {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
}

img.logo-image {
    width: 100%;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #6a11cb;
    transform: translateY(-5px);
}

/* Pie de página */
.footer {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    animation: fadeIn 2s ease-out;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(106, 17, 203, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(106, 17, 203, 0);
    }
}

/* Efecto de pulso en el logo */
.logo-circle.pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-circle {
        width: 150px;
        height: 150px;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
        letter-spacing: 5px;
    }
    
    .description {
        padding: 15px;
    }
    
    .description h2 {
        font-size: 1.5rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 130px;
        height: 130px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}