/* ===========================
   ESTILOS GENERALES
=========================== */

body {
    margin: 0;
    padding: 0;
    background: url('img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Philosopher', sans-serif;
    color: #fff;
    text-align: center;
}

.container {
    margin-top: 80px;
    animation: fadeIn 1.5s ease;
}

/* ===========================
   LOGO
=========================== */

.logo {
    width: 650px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 25px #000);
}

/* ===========================
   TITULOS Y TEXTOS
=========================== */

h1 {
    font-size: 2.4rem;
    color: #e0b043;
    text-shadow: 0 0 15px #000;
    margin-bottom: 10px;
}

.description {
    width: 70%;
    margin: 0 auto 30px auto;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 0 10px #000;
}

/* ===========================
   BOTONES
=========================== */

.btns {
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid #e0b043;
    background: rgba(0,0,0,0.6);
    color: #e0b043;
}

.btn:hover {
    background: #e0b043;
    color: #111;
}

/* ===========================
   POPUP WHATSAPP
=========================== */

.popup-whatsapp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-whatsapp-content {
    background: #10141d;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 350px;
    border: 1px solid #e0b043;
    animation: fadeIn 0.6s ease;
}

.popup-whatsapp-content h3 {
    margin-top: 0;
    color: #e0b043;
    text-transform: uppercase;
}

.popup-whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #25D366;
    color: #111;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

.popup-whatsapp-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* ===========================
   ANIMACIONES
=========================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 768px) {
    .logo {
        width: 300px;
    }

    .description {
        width: 90%;
        font-size: 1.1rem;
    }

    .btn {
        width: 80%;
        padding: 14px;
    }
}
/* EFECTO BRILLO + METALIZADO + GLOW */
.logo {
    width: 650px;
    margin-bottom: 20px;

    /* Sombra profunda */
    filter: drop-shadow(0 0 25px #000);

    /* Efecto brillo suave */
    animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 25px #000) brightness(1);
    }
    50% {
        filter: drop-shadow(0 0 40px #e0b043) brightness(1.25);
    }
    100% {
        filter: drop-shadow(0 0 25px #000) brightness(1);
    }
}
/* ===========================
   INFORMACIÓN DEL SERVIDOR
=========================== */

.server-info {
    width: 80%;
    margin: 60px auto;
    padding: 30px;
    background: rgba(0,0,0,0.55);
    border: 1px solid #e0b043;
    border-radius: 10px;
    box-shadow: 0 0 25px #000;
    animation: fadeIn 1.5s ease;
}

.server-info h2 {
    color: #e0b043;
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #000;
}

.info-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 0 10px #000;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-box {
    background: rgba(0,0,0,0.45);
    border: 1px solid #e0b043;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px #000;
}

.info-box h3 {
    color: #e0b043;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #000;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    margin: 6px 0;
    font-size: 1.1rem;
    text-shadow: 0 0 8px #000;
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
/* ===========================
   FOOTER
=========================== */

.footer {
    margin-top: 60px;
    padding: 25px 0;
    background: rgba(0,0,0,0.55);
    border-top: 1px solid #e0b043;
    text-align: center;
    color: #e0b043;
    font-size: 1rem;
    text-shadow: 0 0 10px #000;
}

.footer p {
    margin: 5px 0;
}
/* ===========================
   RESPONSIVE MEJORADO
=========================== */

@media (max-width: 768px) {

    /* Logo más pequeño y centrado */
    .logo {
        width: 85%;
        max-width: 380px;
        margin-top: 20px;
    }

    /* Botones más grandes y cómodos */
    .btn {
        width: 90%;
        padding: 14px;
        font-size: 1.1rem;
        margin: 10px auto;
        display: block;
    }

    /* Texto principal más legible */
    .description {
        width: 90%;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Caja de información del servidor */
    .server-info {
        width: 92%;
        padding: 20px;
        margin-top: 40px;
    }

    /* Títulos más compactos */
    .server-info h2 {
        font-size: 1.6rem;
    }

    /* Texto introductorio */
    .info-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Las cajas pasan a 1 columna */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-box {
        padding: 15px;
    }

    .info-box h3 {
        font-size: 1.2rem;
    }

    .info-box ul li {
        font-size: 1rem;
    }

    /* Footer más compacto */
    .footer {
        padding: 15px 0;
        font-size: 0.9rem;
    }
}