/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Banner */
.banner {
    background-image: url('banner.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 20px;
    position: relative;
}

.logo {
    padding: 10px;
    max-width: 170px;
    border-radius: 70%;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.banner h1 {
    margin: 10px 0 5px;
    font-size: 3em;
}

.banner h1, .banner .slogan, .banner .logo {
    transition: transform 0.2s ease-out;
}

.slogan {
    margin: 0;
    font-size: 1.5em;
    font-style: italic;
}

/* Main Content */
main {
    flex-grow: 1;
    padding: 20px;
    overflow: hidden; /* Hide elements before they animate in */
    position: relative;
}

.background-drop {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 0.3; /* Make it more subtle */
}

.em-breve, .contato {
    position: relative; /* Ensure content stays on top */
    z-index: 1;
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.em-breve {
    animation-delay: 0.2s;
}

.contato {
    animation-delay: 0.4s;
}

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

.em-breve h2 {
    font-size: 2.8em;
    color: #6f4e37;
}

.em-breve p {
    font-size: 1.2em; /* Added font size for em-breve paragraphs */
}

.contato p {
    font-size: 1.3em;
    margin: 10px 0;
}

.contato a {
    color: #6f4e37;
    text-decoration: none;
}

.contato i {
    color: #6f4e37;
    margin-right: 10px;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
}

/* Footer */
footer {
    background-color: #6f4e37;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1em;
}

footer i {
    margin-right: 10px;
}


.whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
}

@media (max-width: 768px) {
    .contato p:first-of-type a { /* Target the phone number link */
        text-shadow: 0 0 5px white, 0 0 5px white, 0 0 5px white; /* Multiple shadows for stronger effect */
    }
}
