@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');

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

body {
    color: white;
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    background-image: url('imagens/textura.png');
    background-repeat: repeat;
    background-size: auto;
}

h1,
h2,
h3 {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    color: #000;
}

p {
    font-family: "Montserrat";
    color: #000;
}

/* Links padrão */
a {
    text-decoration: none;
    color: inherit;
}

/*section 1*/
section.video {
    background-color: #0e0e1a;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    gap: 30px;
}

#bolha h1 {
    font-size: 20px;
    background-color: #0f111e;
    color: #ffffff;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#bolha h1 span {
    color: #b9924a;
}

#texto h2 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 20px;
}

#texto p {
    font-size: 17px;
    line-height: 1.6;
    margin: 10px 0;
    color: #fff;
}

#lista-bpo {
    text-align: left;
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.8;
    padding: 10px 18px;
    font-family: "Montserrat";
    background-color: #0f111e;
    border-radius: 30px;
}

.botao {
    background: linear-gradient(to right, #d5b675, #c39d4d);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
    margin-top: 30px;
}

.botao:hover {
    opacity: 0.85;
}

#texto p em,
#texto p strong {
    color: #b9924a;
    font-style: italic;
    font-weight: 500;
}

#cta {
    font-weight: lighter;
    margin-top: 20px;
    font-size: 15px;
    margin-top: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 25px auto 0;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

/*section 2*/
.clientes {
    text-align: center;
    padding: 40px 20px;
    max-width: 530px;
    margin: 0 auto;
}

.text img {
    width: 50px;
    margin-bottom: 10px;
}

.text p {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.text p span {
    color: #b79a67;
    font-style: italic;
    font-weight: 600;
}

.fotos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card p {
    color: #333;
    font-size: 16px;
    line-height: 1.4;
}

.card p strong {
    color: #000;
}

/*section 3*/
.footer {
    background-color: #eaeaea;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
}

/* Ajusta para desktop */
@media (min-width: 768px) {
    .footer {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 60px 80px;
    }
}

#alpha2 img {
    width: 120px;
    margin-bottom: 12px;
}

#alpha2 p {
    font-size: 13px;
    color: #1c1c1c;
}

#bravo h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1c1c1c;
}

#mail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

#mail img {
    width: 18px;
    height: auto;
}

#mail p {
    font-size: 14px;
    color: #1c1c1c;
}

/* Botão WhatsApp */
.botao2 {
    background-color: #57e390;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.botao2:hover {
    background-color: #45c278;
}

@media (min-width: 900px) and (max-width: 10520px){
    body {
        max-width: 1360px;
        width: 100%;
    }

    .video {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #bolha h1 {
        font-size: 35px;
    }

    #text {
        width: 70%;
        align-items: center;
    }

    #text h2 {
        font-size: 25px;
    }

    #text p {
        font-size: 22px;
    }

    #lista-bpo {
        font-size: 22px;
    }

    .video-container {
        max-width: 1260px;
    }

    .botao {
        padding: 20px 40px;
        font-size: 25px;
        margin-bottom: 30px;
    }

    .clientes .text p {
        font-size: 22px;
    }

    .card p {
        font-size: 20px;
    }

    #cta {
        font-size: 22px;
    }

    .clientes {
        max-width: 1560px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .fotos {
        width: 100%;
        flex-direction: row;
        gap: 50px;
        justify-content: center;
    }

}