/* ====================================
   RESET
==================================== */

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

:root{
    --bg:#DED9D7;
    --white:#ffffff;

    --green:#4C5A34;
    --green-dark:#26311D;

    --gold:#C9A24A;
    --gold-light:#DDB96B;

    --text:#2F2B25;
    --gray:#6D6A66;

    --shadow:0 15px 35px rgba(0,0,0,.10);
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

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

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.97);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    z-index:999;
}

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

.logo img{
    height:75px;
    width:auto;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:var(--green-dark);
    font-weight:700;
    transition:.3s;
}

.menu a:hover{
    color:var(--gold);
}

.btn-header{
    background:var(--green);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-header:hover{
    background:var(--green-dark);
    transform:translateY(-3px);
}

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

.hero{
    min-height:100vh;
    background:url("../img/scala.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    padding-top:90px;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(38,49,29,.90),
        rgba(38,49,29,.45)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:750px;
    color:#fff;
}

.hero-content span{
    display:inline-block;
    background:rgba(201,162,74,.15);
    border:1px solid rgba(201,162,74,.35);
    color:var(--gold-light);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content h1{
    font-size:65px;
    line-height:1.05;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:35px;
    color:#f1f1f1;
}

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

.btn-primary{
    background:var(--gold);
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    background:var(--gold-light);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:var(--green);
}

/* ====================================
   PORTAIS
==================================== */

.portal-section{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.portal-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.portal-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:var(--shadow);
    text-align:center;
    color:var(--text);
    transition:.4s;
}

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

.portal-card i{
    font-size:40px;
    color:var(--green);
    margin-bottom:20px;
}

.portal-card h3{
    margin-bottom:10px;
}

.portal-card p{
    color:var(--gray);
}

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

section{
    padding:100px 0;
}

.section-tag{
    display:inline-block;
    color:var(--gold);
    font-weight:700;
    margin-bottom:15px;
}

.section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-header h2{
    font-size:45px;
    margin-bottom:20px;
}

.section-header p{
    color:var(--gray);
    line-height:1.8;
}

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

.sobre-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.sobre-img img{
    border-radius:25px;
    box-shadow:var(--shadow);
}

.sobre-text h2{
    font-size:42px;
    margin-bottom:25px;
}

.sobre-text p{
    color:var(--gray);
    line-height:1.9;
    margin-bottom:18px;
}

.sobre-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:30px;
}

.sobre-list div{
    background:#fff;
    padding:20px;
    border-radius:15px;
    text-align:center;
}

.sobre-list strong{
    display:block;
    font-size:30px;
    color:var(--green);
}

.sobre-list span{
    font-size:14px;
}

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

.ensino{
    background:#fff;
}

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

.ensino-card{
    padding:40px;
    background:#f8f8f8;
    border-radius:25px;
    transition:.4s;
}

.ensino-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.ensino-card i{
    font-size:45px;
    color:var(--green);
    margin-bottom:20px;
}

.ensino-card h3{
    margin-bottom:15px;
}

.ensino-card p{
    color:var(--gray);
    line-height:1.8;
}

/* ====================================
   ANGLO
==================================== */

.anglo{
    background:linear-gradient(
        135deg,
        var(--green-dark),
        var(--green)
    );
    color:#fff;
}

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

.anglo-content h2{
    font-size:45px;
    margin-bottom:20px;
}

.anglo-content p{
    line-height:1.9;
}

.anglo-box{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:40px;
    text-align:center;
}

.anglo-box i{
    font-size:60px;
    color:var(--gold);
    margin-bottom:15px;
}

.anglo-box strong{
    display:block;
    font-size:26px;
    margin-bottom:10px;
}

/* ====================================
   DIFERENCIAIS
==================================== */

.diferenciais-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.diferencial-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    box-shadow:var(--shadow);
}

.diferencial-card i{
    font-size:40px;
    color:var(--green);
    margin-bottom:20px;
}

.diferencial-card h3{
    margin-bottom:12px;
}

.diferencial-card p{
    color:var(--gray);
    line-height:1.7;
}

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

.cta{
    background:linear-gradient(
        135deg,
        var(--gold),
        var(--green)
    );
    color:#fff;
    text-align:center;
}

.cta-content{
    max-width:800px;
    margin:auto;
}

.cta h2{
    font-size:50px;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    margin-bottom:30px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

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

.footer{
    background:var(--green-dark);
    color:#fff;
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding:80px 0;
}

.footer-brand img{
    height:90px;
    width:auto;

    /* transforma a logo preta em branca */
    filter:
        brightness(0)
        invert(1);
}

.footer h3{
    margin-bottom:15px;
    color:var(--gold);
}

.footer a,
.footer p{
    color:#d9d9d9;
    margin-bottom:10px;
    display:block;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom strong{
    color:var(--gold);
    font-weight:700;
}

.footer-bottom span{
    margin:0 10px;
    opacity:.5;
}

/* ====================================
   COOKIES
==================================== */

#cookies-notice{
    position:fixed;
    bottom:20px;
    left:20px;
    width:360px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
    z-index:99999;
}

#cookies-notice p{
    margin-bottom:20px;
    line-height:1.6;
}

#cookies-notice div{
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

#cookies-notice button{
    border:none;
    cursor:pointer;
    padding:10px 18px;
    border-radius:10px;
}

.reject{
    background:#ececec;
}

.accept{
    background:var(--green);
    color:#fff;
}

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

@media(max-width:991px){

    .menu{
        display:none;
    }

    .portal-grid,
    .ensino-grid,
    .diferenciais-grid{
        grid-template-columns:1fr 1fr;
    }

    .sobre-content,
    .anglo-content,
    .footer-content{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:48px;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .portal-grid,
    .ensino-grid,
    .diferenciais-grid,
    .sobre-list{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:17px;
    }

    .section-header h2,
    .sobre-text h2,
    .anglo-content h2,
    .cta h2{
        font-size:32px;
    }

    #cookies-notice{
        width:calc(100% - 30px);
        left:15px;
        bottom:15px;
    }
}