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

body {
    font-family: 'Outfit', sans-serif;
    /* Faded background image */
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('assets/fondo_final.jpg.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px; 
    width: 90%;
    z-index: 1;
}

.main-logo {
    width: 100%;
    max-width: 500px; 
    height: auto;
    object-fit: contain;
    animation: fadeInDown 1s ease-out;
    mix-blend-mode: multiply; /* Esto elimina el fondo blanco del JPG y deja solo las letras negras */
}

/* Social Links Container */
.social-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out;
}

/* Individual Social Link */
.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Icon Wrappers */
.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
}

.instagram .icon-wrapper {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 10px; /* Instagram is slightly rounded square or circle depending on style, screenshot shows rounded square/circle */
}

.email .icon-wrapper,
.tiktok .icon-wrapper {
    background-color: #000;
}

/* Animaciones suaves */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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