/* ============================================
   RESET E ESTILOS GLOBAIS
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0e0736;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
}

a {
    color: #d97904;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0e0736;
}

/* ============================================
   BOTÕES (CTA)
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
}

.btn i {
    margin-right: 8px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background-color: #1ead51;
    border-color: #1ead51;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-phone {
    background-color: #d97904;
    color: white;
    border: 2px solid #d97904;
}

.btn-phone:hover {
    background-color: #b86203;
    border-color: #b86203;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 121, 4, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-submit {
    background-color: #0e0736;
    color: white;
    width: 100%;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a0d4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 7, 54, 0.3);
}

/* ============================================
   SEÇÃO HERO
   ============================================ */

.hero {
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-attachment: scroll;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-image: url("../img/banner-m.jpg");
    }
}
.hero::before {
    background: linear-gradient(135deg, #0e0736 0%, #1a0d4d 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.7;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* ============================================
   SEÇÃO CONVÊNIOS
   ============================================ */

.convenios {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.convenios h2 {
    color: #0e0736;
    margin-bottom: 40px;
}

.convenios-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    place-items: center;
    margin-bottom: 30px;
}

.convenios-logos img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.convenios-logos img:hover {
    opacity: 1;
}
.img-fluid {
    width: 100%;
}

/* ============================================
   SEÇÃO COMO FUNCIONA
   ============================================ */

.como-funciona {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.como-funciona h2 {
    color: #0e0736;
    margin-bottom: 50px;
}

.passos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.passo {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.passo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.passo .icone {
    width: 60px;
    height: 60px;
    background-color: #d97904;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.passo h3 {
    color: #0e0736;
    margin-bottom: 15px;
}

.passo p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   SEÇÃO ESTRUTURA (GALERIA)
   ============================================ */

.estrutura {
    background-color: white;
    padding: 60px 20px;
}

.estrutura h2 {
    color: #0e0736;
    margin-bottom: 40px;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.galeria img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.galeria img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.estrutura .btn-large {
    display: block;
    margin: 0 auto;
}

/* ============================================
   SEÇÃO FAQ
   ============================================ */

.faq {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.faq h2 {
    color: #0e0736;
    margin-bottom: 40px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background-color: white;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #0e0736;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-header::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #d97904;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */

.cta-final {
    background: linear-gradient(135deg, #0e0736 0%, #1a0d4d 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-final h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-final > .container > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.cta-final .cta-buttons {
    margin-bottom: 50px;
}

/* Formulário Simples */
.form-simples {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.form-simples h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.form-simples form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-simples input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Open Sans", sans-serif;
}

.form-simples input::placeholder {
    color: #999;
}

.form-simples input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 121, 4, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: #0e0736;
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #d97904;
}

footer a:hover {
    color: white;
}

footer p {
    margin-bottom: 10px;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
    }

    .passos {
        grid-template-columns: 1fr;
    }

    .galeria {
        grid-template-columns: repeat(2, 1fr);
    }

    .convenios-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .accordion-header {
        padding: 15px;
        font-size: 0.95rem;
    }

    .accordion-content p {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn i {
        margin-right: 5px;
    }

    .passo {
        padding: 20px;
    }

    .galeria {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .galeria img {
        height: 200px;
    }

    .convenios-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-simples {
        padding: 20px;
    }

    .accordion-header {
        padding: 12px;
        font-size: 0.9rem;
    }

    .accordion-content p {
        padding: 12px;
        font-size: 0.9rem;
    }
}

.whats {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10000;
    animation: tada 2s infinite;
}
.whats a {
    background-color: #00bf49;
    color: #fff;
    padding: 10px 15px;
    border-radius: 40px;
    display: block;
}
.whats a:hover {
    background-color: #13d45d;
}
