* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff5f7;
    color: #333;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.foto-capa {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-conteudo {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background: rgba(0,0,0,0.4);
    color: white;

    padding: 20px;
}

.hero-conteudo h1 {
    font-size: 3rem;
}

@media (max-width: 768px) {
    .hero-conteudo h1 {
        font-size: 2rem;
    }

    .hero-conteudo p {
        font-size: 1rem;
    }
}

.hero-conteudo p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    margin-top: 8px;
}

.botao {
    text-decoration: none;
    background: #ff4f81;
    color: white;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.botao:hover {
    transform: scale(1.05);
}

.secao {
    max-width: 1000px;
    margin: auto;
    padding: 80px 20px;
}

.secao h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.texto {
    text-align: center;
    line-height: 1.8;
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
}

.contador {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 15px;
    min-width: 100px;
    border-radius: 15px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.08);

    text-align: center;
}

.card span {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4f81;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.galeria img {
    width: 100%;
    aspect-ratio: 3 / 4;

    object-fit: cover;
    object-position: center;

    border-radius: 12px;
}

.galeria img:hover {
    transform: scale(1.03);
}

footer {
    background: #ff4f81;
    color: white;

    text-align: center;

    padding: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {

    .hero-conteudo h1 {
        font-size: 2.5rem;
    }

    .hero-conteudo p {
        font-size: 1rem;
    }

}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

/* MOBILE FIRST IMPROVEMENT */
@media (max-width: 768px) {
    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .timeline-texto {
        text-align: center;
    }
}

.timeline-item img {
    width: 320px;
    height: 320px;
    object-fit: cover;

    background: white;
    padding: 0px;


    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.timeline-texto {
    flex: 1;
}

.timeline-texto h3 {
    margin-bottom: 10px;
    color: #ff4f81;
}

.timeline-texto p {
    line-height: 1.8;
}

@media (max-width: 768px) {

    .timeline-item,
    .timeline-item.reverse {
        flex-direction: column;
    }

    .timeline-item img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .timeline-item img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
}

.botao-musica {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background: #ff4f81;
    color: white;

    border: none;
    border-radius: 999px;

    padding: 14px 18px;

    font-size: 14px;
    font-weight: bold;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    cursor: pointer;

    z-index: 999;
}

.botao-musica:active {
    transform: scale(0.95);
}

.tela-entrada {
    position: fixed;
    inset: 0;

    background: radial-gradient(circle at top, #ff6b9a, #ff3f7f);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    text-align: center;
    color: white;

    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.conteudo-entrada {
    padding: 20px;
}

.conteudo-entrada h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.conteudo-entrada p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.botao-entrar {
    background: white;
    color: #ff3f7f;

    border: none;
    padding: 14px 30px;

    border-radius: 999px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

.botao-entrar:active {
    transform: scale(0.95);
}

#coracoes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
}

.coracao {
    position: absolute;
    bottom: -30px;

    color: #ff4f81;
    font-size: 18px;

    opacity: 0;

    animation: flutuar linear forwards;
}

@keyframes flutuar {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    100% {
        transform: translateY(-110vh) scale(1.2);
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.polaroid {
    background: white;
    padding: 12px 12px 25px 12px;

    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    max-width: 340px;
    margin: auto;

    display: flex;
    flex-direction: column;
}

.polaroid img {
    width: 100%;
    aspect-ratio: 3 / 4; /* formato retrato */

    object-fit: cover;
    object-position: center;

    border-radius: 8px;
}

.legenda {
    margin-top: 12px;
    text-align: center;

    overflow: hidden;
    flex: 1;
}

.legenda h3 {
    color: #ff4f81;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.legenda .data {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.legenda .descricao {
    font-size: 0.95rem;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.cta-final {
    text-align: center;
    padding: 60px 20px;
}

.cta-final h2 {
    margin-bottom: 15px;
}

.cta-final p {
    margin-bottom: 25px;
}

.botao-whatsapp {
    display: inline-block;

    padding: 15px 25px;

    background: #ff4f81;
    color: white;

    text-decoration: none;

    border-radius: 999px;

    font-weight: bold;

    transition: 0.3s;
}

.botao-whatsapp:hover {
    transform: scale(1.05);
}