/* ===================== */
/* ======== GERAL ====== */
/* ===================== */

body {
    margin: 0;
    font-family: 'Neuton', serif;
    background: #fff;
}

h1, h2, h3, p {
    margin: 0 0 15px;
}

/* ===================== */
/* ======== HEADER ===== */
/* ===================== */

header {
    width: 100%;
    background: #F3DFF1;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

/* ===================== */
/* HAMBURGUER (FONT AWESOME) */
/* ===================== */

.hamburguer {
    font-size: 30px;
    color: #A38DA3;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.hamburguer.active {
    transform: rotate(180deg);
}

/* ===================== */
/* ===== MENU LATERAL == */
/* ===================== */

.menu-lateral {
    position: fixed;
    top: 0;
    right: -270px;
    width: 260px;
    height: 100%;
    background: #8C4A98;
    color: white;
    padding: 25px 20px;
    box-sizing: border-box;
    transition: 0.4s ease;
    z-index: 1000;
}

.menu-lateral.active {
    right: 0;
}

.menu-lateral h3 {
    margin-top: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
}

.menu-lateral a,
.menu-lateral p {
    color: white;
    text-decoration: none;
    font-size: 17px;
    margin: 12px 0;
    display: block;
}

/* ===================== */
/* ===== CONTEÚDO ====== */
/* ===================== */

.container {
    padding: 20px;
}

.titulo {
    color: #A38DA3;
    font-size: 28px;
    font-weight: bold;
}

/* ===================== */
/* ==== WHATSAPP FLOAT = */
/* ===================== */

@keyframes pulsar {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

@keyframes onda {
    from {
        transform: scale(1);
        opacity: 0.6;
    }
    to {
        transform: scale(1.9);
        opacity: 0;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 14px rgba(0,0,0,0.3);
    cursor: pointer;
    animation: pulsar 2s infinite;
    z-index: 999;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: onda 2s infinite;
    z-index: -1;
}

.whatsapp-btn img {
    width: 34px;
}

/* ===================== */
/* ======= GALERIA ===== */
/* ===================== */

.galeria-zoom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
    margin-top: 25px;
}

.galeria-zoom .foto {
    aspect-ratio: 1 / 1; /* QUADRADO PERFEITO */
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    height: auto;
}

.galeria-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeria-zoom .foto:hover img {
    transform: scale(1.12);
}

.galeria-zoom .foto::after {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.galeria-zoom .foto:hover::after {
    opacity: 1;
}

/* ===================== */
/* ======= MODAL ======= */
/* ===================== */

.zoom-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.zoom-modal img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 14px;
}

.zoom-modal .fechar {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 38px;
    color: white;
    cursor: pointer;
}

/* ===================== */
/* ===== QUEM SOU EU === */
/* ===================== */

.quem-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 30px;
}

.quem-container img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #F3DFF1;
}

.quem-texto p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #333;
}

/* ===================== */
/* ===== ANIMAÇÃO ====== */
/* ===================== */

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

header,
.menu-lateral,
.container,
section,
footer {
    animation: fadeInSite 0.7s ease-out forwards;
}

/* ===================== */
/* ===== RESPONSIVO ==== */
/* ===================== */

@media (min-width: 768px) {

    .quem-container {
        flex-direction: row;
        gap: 45px;
    }

    .quem-texto p {
        text-align: left;
        font-size: 17px;
    }

    .galeria-zoom {
        grid-template-columns: repeat(3, 1fr);
    }

    .titulo {
        font-size: 32px;
    }
}
