html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bg-1 {
    background-image: url('../img/fundo.jpg');
}

.bg-2 {
    background-image: url('../img/fundo2.jpg');
    animation: slideShow 12s infinite;
}

@keyframes slideShow {
    0% { opacity: 0; }
    20% { opacity: 1; }
    50% { opacity: 1; }
    70% { opacity: 0; }
    100% { opacity: 0; }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Escurece a imagem de fundo para destacar o texto */
    z-index: -1;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 250px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slogan {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 10px;
    font-style: italic;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.divider {
    width: 80px;
    height: 4px;
    background-color: #d4af37; /* Cor dourada elegante */
    margin: 30px 0;
    border-radius: 2px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.message {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    color: #dddddd;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #ffffff;
    font-size: 1.8rem;
    text-decoration: none;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .slogan {
        font-size: 1.4rem;
    }
    .logo {
        max-width: 180px;
    }
    h2 {
        font-size: 1.5rem;
    }
}