/* ============================= */
/* CONFIGURAÇÕES GERAIS */
/* ============================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ============================= */
/* HEADER */
/* ============================= */

.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-content {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.logo strong {
    display: block;
    font-size: 18px;
}

.logo span {
    font-size: 13px;
    color: #6b7280;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    color: #374151;
    font-weight: 600;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #f2b705;
}

.btn-header {
    background: #f2b705;
    color: #111827;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
        url("../img/escola-1.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 88px;
}

.hero-content {
    max-width: 720px;
    color: #ffffff;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

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

.tag,
.section-tag {
    display: inline-block;
    background: #f2b705;
    color: #111827;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:35px;
    color:#ffffff;
    max-width:700px;
    text-shadow:0 2px 10px rgba(0,0,0,.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: bold;
}

.btn-primary {
    background: #f2b705;
    color: #111827;
}

.btn-secondary {
    background: #ffffff;
    color: #111827;
}

/* ============================= */
/* SEÇÕES GERAIS */
/* ============================= */

section {
    padding: 90px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

h2 {
    font-size: 38px;
    color: #111827;
    margin-bottom: 20px;
}

p {
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

/* ============================= */
/* SOBRE */
/* ============================= */

.sobre {
    background: #ffffff;
}

.image-card img {
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* ============================= */
/* ENSINO */
/* ============================= */

.ensino {
    background: #f8fafc;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #ffffff;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

/* ============================= */
/* ESTRUTURA */
/* ============================= */

.estrutura ul {
    margin-top: 20px;
    list-style: none;
}

.estrutura li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #374151;
}

.estrutura li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f2b705;
    font-weight: bold;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.gallery img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.gallery img:first-child {
    grid-column: span 2;
}

/* ============================= */
/* CTA */
/* ============================= */

.cta {
    background: #111827;
    color: #ffffff;
    text-align: center;
}

.cta h2,
.cta p {
    color: #ffffff;
}

.cta-content {
    max-width: 720px;
}

/* ============================= */
/* CONTATO */
/* ============================= */

.contato {
    background: #f8fafc;
}

.contact-info {
    margin-top: 25px;
}

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
}

.contact-form textarea {
    height: 130px;
    resize: none;
}

.contact-form button {
    width: 100%;
    border: none;
    background: #f2b705;
    color: #111827;
    padding: 15px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.form-alert{
    padding:14px;
    border-radius:10px;
    margin-bottom:15px;
    font-weight:600;
    text-align:center;
}

.form-alert.success{
    background:#dcfce7;
    color:#166534;
}

.form-alert.error{
    background:#fee2e2;
    color:#991b1b;
}

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

.footer{
    background:#07132d;
    color:#fff;
    padding-top:80px;
}

.footer-content{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:70px;
    padding-bottom:60px;
}

.footer-col{
    position:relative;
}

.footer-col:not(:last-child){
    border-right:1px solid rgba(255,255,255,.12);
    padding-right:50px;
}

.footer-center{
    padding-left:20px;
}

.footer-logo{
    width:120px;
    margin-bottom:25px;
}

.footer-col h3{
    color:#fff;
    font-size:22px;
    margin-bottom:25px;
}

.footer-col p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin-bottom:10px;
}

.footer-col a{
    display:block;
    color:rgba(255,255,255,.85);
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-col a:hover{
    color:#f2b705;
}

.footer-divider{
    width:180px;
    height:1px;
    background:rgba(255,255,255,.12);
    margin:25px 0;
}

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

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    padding:25px;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.75);
}

.footer-bottom strong{
    color:#fff;
}

.footer-bottom span{
    color:rgba(255,255,255,.3);
}

.footer-col h3{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:22px;
    margin-bottom:25px;
}

.footer-col h3 i{
    color:#f2b705;
    font-size:20px;
}

.footer-col a i{
    color:#f2b705;
    margin-right:10px;
    font-size:12px;
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media(max-width:900px){

    .footer-content{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .footer-col{
        border-right:none !important;
        padding-right:0 !important;
    }

    .footer-center{
        padding-left:0;
    }

    .footer-logo{
        margin:0 auto 20px;
    }

    .footer-divider{
        margin:25px auto;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
    }

    .footer-bottom span{
        display:none;
    }
}

/* ============================= */
/* BOTÕES HEADER */
/* ============================= */

.header-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-portal{
    padding:12px 20px;
    border:2px solid #f2b705;
    color:#111827;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-portal:hover{
    background:#f2b705;
}

.btn-header{
    background:#f2b705;
    color:#111827;
    padding:12px 20px;
    border-radius:30px;
    font-weight:bold;
}

/* ============================= */
/* DESTAQUES */
/* ============================= */

.numbers{
    background:#f8fafc;
    padding:40px 0;
}

.numbers .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.number-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.number-card h3{
    color:#111827;
    font-size:18px;
}

.footer a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#f2b705;
}