/**
 * RiFortuna - Estilos de página En Construcción
 */

:root {
    --primary-color: #00d190;
    --secondary-color: #09152d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg,
            var(--secondary-color) 0%,
            #1a3a5c 50%,
            var(--secondary-color) 100%);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Partículas de fondo */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 25s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2s;
    animation-duration: 24s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 17s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1s;
    animation-duration: 23s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Contenedor principal */
.construccion-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.logo-container img {
    max-width: 180px;
    filter: drop-shadow(0 5px 20px rgba(0, 209, 144, 0.3));
}

/* Card principal */
.construccion-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 209, 144, 0.2);
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
    overflow: hidden;
}

.construccion-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
            var(--primary-color),
            #00b87a,
            var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Icono de construcción */
.construccion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #00b87a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 209, 144, 0.4);
    animation: pulse 2s infinite;
}

.construccion-icon i {
    font-size: 2.5rem;
    color: #fff;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Título */
.construccion-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.construccion-title span {
    color: var(--primary-color);
}

/* Subtítulo */
.construccion-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Imagen del premio */
.premio-container {
    position: relative;
    margin: 30px 0;
}

.premio-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.premio-image:hover {
    transform: scale(1.02);
}

.premio-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Sección de fecha con banner */
.fecha-section {
    margin: 25px 0;
}

.banner-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* Fecha destacada */
.fecha-box {
    background: linear-gradient(135deg, var(--secondary-color), #1a3a5c);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    display: inline-block;
}

.fecha-box p {
    margin: 0;
    font-size: 1rem;
}

.fecha-box .fecha {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-top: 5px;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Redes sociales */
.social-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.social-section p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a.instagram {
    background: linear-gradient(135deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
}

.social-icons a.tiktok {
    background: #000;
}

.social-icons a.facebook {
    background: #1877f2;
}

.social-icons a.whatsapp {
    background: #25d366;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Contacto */
.contacto-link {
    margin-top: 20px;
}

.contacto-link a {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contacto-link a:hover {
    filter: brightness(1.2);
}

.contacto-link a i {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .construccion-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .construccion-title {
        font-size: 1.6rem;
    }

    .construccion-subtitle {
        font-size: 1rem;
    }

    .premio-badge {
        top: -10px;
        right: -10px;
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .fecha-box .fecha {
        font-size: 1.5rem;
    }

    .features {
        gap: 15px;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .logo-container img {
        max-width: 140px;
    }

    .banner-image {
        max-width: 100%;
        border-radius: 10px;
    }
}
