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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    overflow: hidden;
}

.logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 1;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.2));
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.7s ease, transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.visible {
    transform: translateY(0);
    opacity: 1;
}

.header-logo {
    width: 250px;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#map-container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

#map-container.visible {
    opacity: 1;
    pointer-events: auto;
}

main {
    width: 100vw;
    height: 100vh;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .logo {
        width: 200px;
    }
    
    .header-logo {
        width: 100px;
    }
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.header.visible .social-media {
    opacity: 1;
}

.social-icon {
    font-size: 20px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon .fa-whatsapp:hover {
    color: #25D366;
}

.social-icon .fa-instagram:hover {
    color: #E4405F;
}

.social-icon .fa-tiktok:hover {
    color: #000000;
} 