/* ==========================================================================
   DISEÑO EN CONSTRUCCIÓN - GK GOURMET CHICKEN
   ========================================================================== */

:root {
    --color-gold: #c5a059;
    --color-gold-dark: #9a7837;
    --color-slate-dark: #1b2631;
    --bg-light-ivory: #faf8f5;
    --bg-white: #ffffff;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-premium: 0 20px 40px rgba(27, 38, 49, 0.06);
    --border-light: rgba(197, 160, 89, 0.15);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light-ivory);
    color: var(--color-slate-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Fondo decorativo de lujo */
body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, rgba(250, 248, 245, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.construction-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 550px;
    padding: 20px;
    animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.card-construction {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-premium);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logotipo */
.logo-wrapper {
    max-width: 280px;
    margin-bottom: 35px;
}

.logo-img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

/* Mensaje y Contenido */
.badge-status {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold-dark);
    margin-bottom: 20px;
}

.title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-slate-dark);
    margin-bottom: 15px;
}

.divider-gold {
    width: 50px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 auto 25px;
}

.subtitle {
    font-size: 1.05rem;
    color: #4a5c6e;
    line-height: 1.6;
    font-weight: 300;
    max-width: 420px;
    margin-bottom: 40px;
}

/* Pie de la tarjeta */
.footer-construction {
    width: 100%;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding-top: 30px;
}

.contact-email {
    font-size: 0.9rem;
    color: #4a5c6e;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-email i {
    color: var(--color-gold);
    margin-right: 6px;
}

/* Enlaces Redes Sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(27, 38, 49, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--color-slate-dark);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--bg-white);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

/* Animaciones */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsivo */
@media (max-width: 480px) {
    .card-construction {
        padding: 40px 25px;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .logo-wrapper {
        max-width: 220px;
    }
}
