body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
	background: linear-gradient(to bottom, #3e81bd, #0e5db8);
    background: url('img/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);  /* Branco com 90% de opacidade */
    margin-top: 100px;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
	margin-top: -90px;
	border: 7px solid rgba(255, 255, 255, 1); /* Cor original com 50% de opacidade */
	box-shadow: 0 4px 8px rgba(8, 21, 34, 0.5); /* Sombra leve opcional */
	
}

h1 {
    font-size: 50px;
    color: #2c6670;
    margin-bottom: 5px;
	font-family: "Beau Rivage", cursive;
    font-weight: 400;
    font-style: normal;
	
}
.beau-rivage-regular {
    font-family: "Beau Rivage", cursive;
    font-weight: 400;
    font-style: normal;
}

.box {
    margin-bottom: 20px;
}

.box img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.2s;
}

.box img:hover {
    transform: scale(1.02);
}

.social-icons {
    margin-top: 10px;
}

.social-icons a i {
    font-size: 24px;
    color: #26ace0;
    transition: transform 0.3s ease, color 0.3s ease;
	margin:0 10px;
}

.social-icons a:hover i {
    color: #4d68b3; /* Cor de destaque ao passar o mouse (pode ajustar) */
    animation: pulse 0.6s ease;
    transform: scale(1.3);
}

/* Animação Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}
/* Modal Fundo Escuro */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.5s;
}

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

/* Conteúdo do Modal */
.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from {transform: translateY(-100px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Botão Fechar */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1500; /* Garante que fique acima do vídeo */
}

.close:hover,
.close:focus {
    color: #ff4444;
    text-decoration: none;
    cursor: pointer;
}