/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

/* Reset e estilo geral */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0A0A0A;
    color: #fff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Fundo animado com linhas lilás */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(147, 112, 219, 0.08) 0px,
        rgba(147, 112, 219, 0.08) 1px,
        transparent 1px,
        transparent 20px
    );
    z-index: -1;
    animation: moveBackground 30s linear infinite;
}
@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

/* Título punk/grunge */
.titulo-com-maquina {
    text-align: center;
    margin: 50px 0;
}
.titulo-punk {
    font-family: 'Creepster', cursive;
    font-size: 6rem;
    background: linear-gradient(90deg, white, white, white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Seção Sobre Mim */
.apresentacao {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    flex-wrap: wrap;
}
.texto-apresentacao {
    flex: 1;
    min-width: 250px;
    margin-right: 40px;
    color: #fff;
}
.texto-apresentacao h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #DA70D6;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 20px;
}
.texto-apresentacao p {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #fff; /* Texto branco */
    text-shadow: 1px 1px 0 #000, 2px 2px 2px rgba(0,0,0,0.5);
}

/* Imagem da apresentação com ícone de Instagram */
.imagem-apresentacao {
    flex-shrink: 0;
    max-width: 300px;
    text-align: right;
    position: relative;
}
.imagem-apresentacao img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(147, 112, 219, 0.7);
}
.instagram-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.instagram-icon img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.imagem-apresentacao:hover .instagram-icon {
    opacity: 1;
    transform: scale(1.2);
    cursor: pointer;
}

/* Fotos Magrão */
.fotos-magrao {
    display: flex;
    justify-content: space-between; /* espaça as imagens e o texto */
    align-items: center; /* alinha verticalmente ao centro */
    gap: 20px;
    padding: 20px;
    flex-wrap: nowrap; /* impede quebra para linha nova */
}

.fotos-magrao .imagem-esquerda,
.fotos-magrao .imagem-direita {
    width: 250px; /* tamanho fixo */
    height: auto;
    border-radius: 10px;
    flex-shrink: 0; /* impede que encolham */
}

.texto-central {
    flex: 1; /* ocupa o espaço restante */
    text-align: center; /* texto centralizado horizontalmente */
    color: #fff;
     min-width: 200px;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.3rem;
    line-height: 1.8;

    margin: 0 20px; /* distância das imagens */
}

.texto-central p {
    margin: 0;
}

/* Responsividade para telas pequenas */
@media screen and (max-width: 768px) {
    .fotos-magrao {
        flex-direction: column; /* empilha na vertical */
        align-items: center;
    }

    .fotos-magrao .imagem-esquerda,
    .fotos-magrao .imagem-direita {
        width: 80%;
        margin-bottom: 15px;
    }

    .texto-central {
        width: 90%;
        margin: 0 0 15px 0;
    }
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .fotos-magrao {
        flex-direction: column; /* empilha elementos */
        align-items: center;
    }

    .fotos-magrao .imagem-esquerda,
    .fotos-magrao .imagem-direita {
        max-width: 80%;
        margin-bottom: 15px;
    }

    .texto-central {
        width: 90%;
        margin-bottom: 15px;
    }
}

/* Comentários */
.comentarios-container-grande {
    width: 100%;
    background-color: rgba(3, 118, 157, 0.2);
    padding: 40px 20px;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.comentarios-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.retangulo-comentario2, .retangulo-comentario3 {
    background-color: rgba(173, 216, 230, 0.5);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    min-width: 250px;
}
.foto-comentario {
    width: 120px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #fff;
}
.texto-comentario2, .texto-comentario3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.2rem;
    color: #000;
    line-height: 1.5;
}

/* Galeria */

.galeria h2 {
 font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #DA70D6;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 20px;
}

.galeria {
    width: 100%;
    padding: 50px 20px;
    text-align: center;
    background: rgba(128, 128, 128, 0.3);
    border-radius: 15px;
}
.linha-galeria {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.linha-galeria img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(147, 112, 219, 0.5);
    transition: transform 0.2s ease, filter 0.2s ease;
}
.linha-galeria img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Mapa */
.mapa-localizacao {
    padding: 0; /* remove espaços extras */
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
}

.mapa-localizacao h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.2rem;
    color: #DA70D6;
    margin-bottom: 20px;
}

#map {
    height: 500px; /* maior para preencher */
    width: 100%;
    border-radius: 0; /* sem cantos arredondados */
    box-shadow: none; /* remove sombra se quiser cobrir tudo */
}

/* Agendamento */
.agendamento {
    width: 100%;
    background-color: #1A0A1A;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #333;
}
.agendamento form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}
.agendamento input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #555;
    background-color: #222;
    color: #fff;
    font-size: 1rem;
}
.agendamento input::placeholder {
    color: #aaa;
}
.agendamento button {
    padding: 12px 20px;
    font-size: 1.1rem;
    font-family: 'Creepster', cursive;
    color: #fff;
    background-color: #800080;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.agendamento button:hover {
    background-color: #DA70D6;
    color: #000;
}

.agendamento h2 {
 font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #DA70D6;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 20px;
}

/* Copyright */
section.copyright {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: #0A0A0A;
    color: #aaa;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin: 0;
    box-sizing: border-box;
}

/* Ajuste da mensagem de sucesso/erro em telas pequenas */
@media (max-width: 600px) {
    #mensagem h2 {
        top: 10%; /* mais perto do topo */
        font-size: 1.5rem; /* diminui o tamanho da fonte */
    }
    #mensagem img {
        width: 100%; /* garante que a imagem cubra toda a tela no celular */
        height: auto;
    }
}
