/* ---------- GERAL ---------- */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #222;
}

h1 {
    color: #fff;
}

h2 {
    color: #1b04ee;
    text-align: center;
    
}

p {
    line-height: 1.6;
}



/* ---------- HEADER ---------- */
.header {
    background: #1b04ee;
    padding: 25px;
    text-align: center;
    color: #fff;
}

.btn-whatsapp-header {
    background: #25D366;
    padding: 12px 22px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.btn-whatsapp-header:hover {
    background: #1faa52;
}



/* ---------- SOBRE (FOTO + TEXTO) ---------- */
.sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10%;
    gap: 40px;
}

.foto-container img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1b04ee;
}



/* ---------- SERVIÇOS ---------- */
.servicos {
    padding: 40px 10%;
    background: #fff;
}

.servicos ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
}

.servicos li {
    padding: 8px 0;
}



/* ---------- PREÇO ---------- */
.preco {
    padding: 40px 10%;
    background: #eef0fc;
    text-align: center;
}

.valor {
    font-size: 32px;
    margin: 10px 0;
}



/* ---------- CHAMADA FINAL ---------- */
.cta {
    padding: 40px 10%;
    text-align: center;
}

.btn-whatsapp-final {
    background: #25D366;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.btn-whatsapp-final:hover {
    background: #1faa52;
}



/* ---------- RESPONSIVO PARA CELULAR ---------- */
@media (max-width: 768px) {

    .sobre {
        flex-direction: column;
        text-align: center;
    }

    h2 {
    position: relative;
    left: 5px;
    }

    .foto-container img {
        width: 180px;
        height: 180px;
    }

    .servicos ul {
        font-size: 16px;
    }

    .btn-whatsapp-final {
        width: 90%;
        display: inline-block;
    }
}


@media (max-width: 480px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    .foto-container img {
        width: 160px;
        height: 160px;
    }
}

                  /* CODIGO DO DOOGLE MAPS  */

/* ===========================
   📍 LOCALIZAÇÃO + MAPA
=========================== */

.location-section {
    text-align: center;
    margin-top: 60px;
}

.location-title {
    font-size: 28px;
    font-weight: bold;
    color: #1b04ee;
    margin-bottom: 15px;
}

.map-container {
    width: 100%;
    height: 350px;
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #1b04ee;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 📱 RESPONSIVO - CELULAR */
@media (max-width: 480px) {

    .location-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .map-container {
        height: 260px;
        border-radius: 8px;
        border-width: 1px;
    }
}

                       /* BLOCO DO MODELO DE APOSTILA */
                       
.modelo-apostila {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 10px;
    margin-top: 40px;
}

.modelo-apostila h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.modelo-apostila p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-modelo {
    display: inline-block;
    background: #1b04ee;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.btn-modelo:hover {
    background: #3b82f6;
}

/* 📱 RESPONSIVO */
@media (max-width: 480px) {
    .modelo-apostila h2 {
        font-size: 22px;
    }

    .modelo-apostila p {
        font-size: 16px;
    }

    .btn-modelo {
        font-size: 16px;
        padding: 10px 18px;
    }
}


