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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100dvh;
    background-color: #F1E9DC;
    font-family: 'Cormorant Garamond', serif; /* estilo mágico opcional */
    animation: fadeIn 2s ease-in-out;
}

/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid #000; */
    width: 400px;
    height: auto;
    padding: 20px;
    /* background-color: #fffaf4; */
    border-radius: 16px;
    /* box-shadow: 0 0 20px rgba(85, 71, 60, 0.2); */
    animation: mistFloat 4s ease-in-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.logo-img {
    width: 60%;
    margin-left: -5%;
    animation: zoomGlow 6s ease-in-out infinite;
}

.logo-txt1,
.logo-txt2 {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: textFloat 1.5s ease-out forwards;
}

.logo-txt1 {
    margin: 6% 0;
    animation-delay: 1s;
}

.logo-txt2 {
    animation-delay: 1.3s;
}



.link-instagram{
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    color: #515151;
    animation: textFloat 1.5s ease-out forwards;
    animation-delay: 3.3s;
}

.link-instagram span{
    font-size: 26px;
    font-weight: bold;
}

.icon{
    /* border: 1px solid #000; */
    fill: #515151;
    width: 40px;
    margin: 0 10px 0 0;
}

/* ANIMACIONES */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mistFloat {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomGlow {
    0%, 100% {
        transform: scale(1);
        /* filter: drop-shadow(0 0 0px #8e7b6f); */
    }
    50% {
        transform: scale(1.05);
        /* filter: drop-shadow(0 0 10px #cbb99b); */
    }
}

@keyframes textFloat {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


