/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonte padrão */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #131315; /* Fundo não tão escuro */
    color: #ffffff;
    overflow-x: hidden;
}

/* Container principal */

/* Seções */
section {
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 550px;
}

section .content {
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

/* Seção Capa */
#capa {
    position: relative;
    background: url('fotos/3-3.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#capa2 {
    position: relative;
    background: url('fotos/2-2.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#capa .profile-pic {
    width: 150px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

#capa h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    margin-top: 20px;
}

#capa .tagline {
    font-size: 24px;
    margin-top: 10px;
    color: transparent;
}

#capa .scroll-indicator {
    position: absolute;
    bottom: 20px;
    animation: bounce 2s infinite;
}

#capa .scroll-indicator span {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

#capa .scroll-indicator i {
    font-size: 24px;
}

/* Animação de Balanço */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); 
    }
    40% {
        transform: translateY(-10px); 
    }
    60% {
        transform: translateY(-5px); 
    }
}

/* Seção Sobre */
#sobre {
    background: radial-gradient(circle at center, #3d0b0b, #1a1a1a); /* Fundo mais escuro */
}

#sobre h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

#sobre p {
    font-size: 18px;
    line-height: 1.4;
    text-align: justify;
}

#sobre .tagline {
    font-size: 18px;
    line-height: 0;
    text-align: center;
    font-weight: 500;
}

/* Seção Mídia */
#midia {
    background: linear-gradient(#661a1a, #3d0b0b);
}

#midia h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.media-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.media-item {
    margin-bottom: 10px;
    width: calc(50% - 20px);
}

.media-item img,
.media-item iframe {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .media-item {
        width: 100%;
    }
}

/* Seção Contato */
#contato {
    background: radial-gradient(circle at center, #3d0b0b, #1a1a1a); /* Fundo mais escuro */
}

#contato h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

#contato p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-buttons {
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #d32525;
    color: #ffffff;
    padding: 15px 120px;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 24px;
}

.whatsapp-button:hover {
    background-color: #be1e1e;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff10;
    color: #ffffff;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #ffffff90;
}

#contact-form button {
    padding: 15px 30px;
    background-color: #ffaaaa;
    color: #3d0b0b;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #cc8888;
}

/* Seção Redes Sociais */
#redes-sociais {
    background: radial-gradient(circle at center, #661a1a, #3d0b0b); /* Fundo mais claro */
}

#redes-sociais h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    margin: 0 15px;
    color: #ffffff;
    font-size: 40px;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #ffaaaa;
    transform: translateY(-10px);
}

/* Acessibilidade e Foco */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px dashed #ffaaaa;
    outline-offset: 5px;
}

/* Efeito de Degradê em Espiral */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate 30s infinite linear;
    z-index: -1;
    opacity: 0.5;
}

/* Estilização da Barra de Rolagem */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3d0b0b, #661a1a);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #661a1a, #3d0b0b);
}

/* Estilização da Barra de Rolagem para Firefox */
.scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #3d0b0b #1a1a1a;
}

#contact-form button {
    width: 100%;
    padding: 20px;
    background-color: #ffaaaa;
    color: #3d0b0b;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.media-gallery {
    display: flex;
    flex-direction: column; /* Define a direção como coluna */
    align-items: center;    /* Centraliza os vídeos horizontalmente */
    gap: 20px;              /* Espaçamento entre os vídeos */
}

.media-item {
    width: 100%;  /* Faz com que os vídeos ocupem a largura total disponível */
    max-width: 600px;  /* Define um tamanho máximo para os vídeos, se necessário */
}

a.tagline {
    color: white;
    text-decoration: none;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
}

.modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
}

#modalImage {
    width: 100%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 40%;
    color: white;
    font-size: 40px;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.hidden {
    display: none;
}

.link {
    color: white;
    text-decoration: none;
    font-weight: regular;
}