/* Reset básico para asegurar compatibilidad */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #0e2630;
    color: #fff;
}

h1 {
    font-size: 32px;
    margin: 20px 0;
    display: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.logo img {
    width: 600px;
    height: auto;
    margin-bottom: 20px;
}

.content {
    max-width: 600px;
}

a {
    color: #fff;
    text-decoration: none;;
}

#icon-route {
    margin: 10px 0px;
    width: 28px
}

#icon-telegram, #icon-whatsapp {
    height: 22px;
}

.address, .contact {
    font-size: 24px;
    margin: 10px 0;
}

.contact a {
    color: #fff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

@keyframes parpadeoSuave {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

p.address {
    animation: parpadeoSuave 4s infinite;
}

/* Responsive */
@media (max-width: 600px) {
    .logo img {
        width: 400px;
    }

    .address, .contact {
        font-size: 22px;
    }

    #icon-telegram, #icon-whatsapp {
        height: 20px;
    }
}
