/* ===== Reset básico ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ===== Corpo geral ===== */
body {
    background-color: #0d001a;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(180deg, #2e004f, #100018);
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 700px;
    margin: auto;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c58aff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 25px;
}

.cta-button {
    background: linear-gradient(90deg, #b86bff, #8b3eff);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    background: linear-gradient(90deg, #a352ff, #6928d9);
    transform: scale(1.05);
}

/* ===== Depoimentos / Carrossel ===== */
.testimonials {
    background: #1a002d;
    text-align: center;
    padding: 60px 20px;
}

.testimonials h2 {
    font-size: 2rem;
    color: #e5b3ff;
    margin-bottom: 30px;
}

/* ===== Carrossel (um vídeo por vez, maior) ===== */
.carousel-container {
    position: relative;
    max-width: 700px;  /* container maior para vídeos */
    margin: 40px auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel video {
    width: 100%;
    height: 400px;   /* vídeos maiores */
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #c58aff;
    flex-shrink: 0;
}

/* Botões do carrossel */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
}

.prev:hover, .next:hover {
    background-color: #8b3eff;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ===== Final CTA ===== */
.final-cta {
    background: linear-gradient(180deg, #2e004f, #0d001a);
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    color: #f0c6ff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: #ddd;
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ===== Botão fixo WhatsApp ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    transition: 0.3s;
    z-index: 1000;
}

.whatsapp-button:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
    .hero p {
        font-size: 1rem;
    }

    .carousel video {
        height: 320px;  /* menor para tablet */
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .carousel video {
        height: 220px;  /* menor para celular */
    }
}
