﻿@font-face {
    font-family: "lasa-font";
    src: url("../Fonts/Poppins-Regular.ttf");
}

/* Paleta de colores */
:root {
    --primary-color: rgb(48, 146, 217);
    --background-color: #f5f7fa;
    --text-color: #333;
    --accent-color: #00aaff;
    --white: #fff;
    --bs-font-sans-serif: "lasa-font","Inter", "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: "lasa-font",SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bs-font-sans-serif) !important;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 600px;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
    width: 100%;
    max-width: 640px;
}

.logo {
    width: 100%;
    height: auto;
}

.title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 90%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: var(--primary-color);
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

    .social-icon:hover {
        transform: scale(1.2);
        color: var(--accent-color);
    }

/* Animaciones de fondo */
body::before,
body::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

body::before {
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
}

body::after {
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

.circle-1,
.circle-2,
.circle-3 {
    position: absolute;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.1;
}

.circle-1 {
    top: 20%;
    left: 15%;
    width: 200px;
    height: 200px;
    animation: float 5s ease-in-out infinite;
}

.circle-2 {
    top: 70%;
    right: 20%;
    width: 150px;
    height: 150px;
    animation: float 8s ease-in-out infinite;
}

.circle-3 {
    bottom: 10%;
    left: 50%;
    width: 100px;
    height: 100px;
    animation: float 7s ease-in-out infinite;
}

/* Animación de Flotación */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(20px);
    }
}

/* Responsividad */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }

    .message {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 1.5rem;
    }
}
