@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

body {
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    font-family: "Luckiest Guy", cursive;
    min-height: 100vh;
    padding: 24px;
}

.home {
    width: min(100%, 420px);
}

.titulo-colombiano {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 14px;
    font-family: "Luckiest Guy", cursive;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.titulo-colombiano span {
    display: inline-block;
}

.amarillo {
  color: #FFD700; /* Amarillo bandera */
}

.azul {
  color: #0057B7; /* Azul bandera */
}

.rojo {
  color: #D62828; /* Rojo bandera */
}

.logo {
    width: min(100%, 320px);
    height: auto;
}

/* Boton Go To Menu */
.btn-menu {
    display: inline-block;
    color: #FFD700; /* Amarillo */
    font-size: 2.5rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s ease;
    animation: pulse 1.8s infinite ease-in-out;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
        box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 15px rgba(255, 215, 0, 1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
        box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }
}

.btn-menu:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.5);
}

.btn-menu:focus-visible,
.social-icons a:focus-visible,
.phone-link:focus-visible {
    outline: 3px solid #FFD700;
    outline-offset: 5px;
}

/* Redes sociales */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Base de los íconos */
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Instagram */
.social-icons a.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

/* Facebook */
.social-icons a.facebook {
    background: #1877f2;
}

/* TikTok */
.social-icons a.tiktok {
    background: linear-gradient(135deg, #010101, #000000);
    color: #ffffff;
    text-shadow: 1px 1px 4px #ff0050, -1px -1px 4px #69c9d0;
}

/* Hover */
.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

.phone-link {
    color: #FFD700;
    font-size: 24px;
    text-decoration: none;
}

.phone-link i {
    color: #D62828;
    margin-right: 10px;
}

@media (max-width: 360px) {
    .btn-menu {
        font-size: 2rem;
    }

    .phone-link {
        font-size: 20px;
    }
}
