/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'arima', Montserrat;
    line-height: 1.6;
    color: #333;
    background-color: #E6D1F2;
}

/* Header */
header {
    background-color: #F0E6F6;
    padding: 20px 0 0 0;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 25px auto;
    padding: 20px 50px;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a {
    text-decoration: none;
    color: #C396C2;
    font-weight: bold;
    margin: 10px 0;
}

.menu-line {
    width: 100%;
    height: 4px;
    background-color: #BA8BBB;
    margin-top: 20px;
}

.header-content {
    text-align: center;
    background-color: #BA8BBB;
}

.header-content img {
    width: 100%;
    height: auto;
}

.banner-line {
    width: 100%;
    height: 4px;
    background-color: #BA8BBB;
    margin: 0 0 20px 0;
}

/* List Styling */

.container h1 {
    font-family: 'Arima', cursive;
    color: #BA8BBB;
    text-align: center;
    margin: 20px 0;
}


.container h2 {
    font-family: 'Arima', cursive;
    color: #BA8BBB;
    text-align: center;
    margin: 20px 0;
}

.container ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container ul li {
    background-color: #F0E6F6;
    border: 1px solid #BA8BBB;
    color: #BA8BBB;
    padding: 15px;
    margin: 10px;
    text-align: center;
    width: 30%;
    box-sizing: border-box;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}

.container ul li strong {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .container ul li {
        width: 100%;
    }
}

/* Intro */
.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    background-color: #E6D1F2;
}

.intro {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: #E6D1F2;
}

.intro-right {
    text-align: center;
    max-width: 500px;
}

.intro h2 {
    font-size: 36px;
    color: #BA8BBB;
    font-family: 'Arima', cursive;
}

.intro button {
    background-color: #E6D1F2;
    border: #BA8BBB 4px solid;
    border-radius: 8px;
    color: #BA8BBB;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
    margin: 20px auto; /* Centraliza o botão horizontalmente */
    font-family: 'arima-bold', Montserrat;
}

.intro-images img {
    width: 50px;
    margin-top: 20px;
}

.intro-left img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.intro-left p {
    font-family: 'Arima-bold', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #BA8BBB;
    margin: 20px 0 20px 0;
    text-align: center;
}

/* Video Demo */
.video-demo {
    text-align: center;
    padding: 30px 20px;
    background-color: #F0E6F6;
    color: #BA8BBB;
}

.video-demo h2 {
    font-size: 36px;
    font-family: 'Arima', cursive;
    color: #BA8BBB;
    margin-bottom: 20px;
}

.video-demo p {
    font-size: 18px;
    font-family: 'Arima', cursive;
    color: #BA8BBB;
    margin-bottom: 40px;
}

.video-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Define um tamanho máximo para o vídeo, mantendo a proporção */
    max-width: 560px; /* Largura máxima do vídeo */
    margin: auto; /* Centraliza o contêiner */
}

.video-placeholder iframe {
    width: 560px; /* Largura padrão do vídeo */
    height: 315px; /* Altura padrão do vídeo */
    border: none;
}

/* CTA Section */
.cta-section {
    background-color: #BA8BBB;
    color: #F0E6F6;
    padding: 50px 20px;
    text-align: center;
}

.cta-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.cta-right h2 {
    font-size: 36px;
    font-family: 'Arima', cursive;
}

.cta-left button {
    background-color: #BA8BBB;
    color: #fff;
    padding: 10px 20px;
    border: solid 4px #e2ccee;
    border-radius: 8px;
    color: #e2ccee;
    cursor: pointer;
    font-family: 'arima-bold' Montserrat;
}

/* Benefits */
.benefits {
    padding: 50px 20px;
    text-align: center;
}

.benefits img {
    width: 100%;
    height: auto;
}

/* Testimonials */
.testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #e2ccee;
}

.testimonials h2 {
    font-size: 36px;
    font-family: 'Arima', cursive;
    color: #BA8BBB;
    margin-bottom: 20px;
}

.carousel-container {
    overflow: hidden;
    max-width: 80%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    min-width: 300px;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial .name {
    font-weight: bold;
    margin-bottom: 10px;
    color: #BA8BBB;
}

.testimonial p {
    color: #BA8BBB;
}

.carousel-indicators {
    margin-top: 20px;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ede3f4;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background-color: #BA8BBB;
}

/* Footer */
footer {
    background-color: #bf6bbf;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
}

.footer-content p {
    margin: 0 10px;
}

.social-icons {
    margin: 20px 0;
}

.social-icons img {
    width: 24px;
    height: 24px;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .logo img {
        margin: 20px 0;
    }
    
    .intro {
        flex-direction: column;
    }

    .intro h2 {
        padding: 20 0 0 0;
    }

    .intro-right,
    .intro-left {
        max-width: 100%;
    }

    .cta-container {
        flex-direction: column;
    }

    .carousel-track {
        flex-direction: column;
    }
}
