/*
Theme Name: EBS Multimídia Futurista
Theme URI: https://ebsmultimidia.net
Author: Elielson Barbosa
Description: Tema WordPress futurista para cursos EAD e Ao Vivo da EBS Multimídia.
Version: 2.0
Text Domain: ebs-multimidia
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
 --ebs-green:#19A34A;
 --ebs-green-dark:#128C3A;
 --ebs-yellow:#FFD54A;
 --ebs-gold:#FFC107;
 --ebs-dark:#0D1117;
 --ebs-dark-2:#151B23;
 --ebs-text:#F5F7FA;
 --ebs-muted:#B8C1CC;
 --ebs-card:rgba(255,255,255,.04);
 --ebs-border:rgba(255,255,255,.08);
 --ebs-gradient:linear-gradient(135deg,#19A34A,#FFD54A);
 --ebs-shadow:0 18px 50px rgba(0,0,0,.35);
}

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

html{
 scroll-behavior:smooth;
}

body{
 background:linear-gradient(180deg,#0D1117,#111827);
 color:var(--ebs-text);
 font-family:'Poppins',sans-serif;
 line-height:1.6;
 overflow-x:hidden;
}

body::before{
 content:'';
 position:fixed;
 inset:0;
 background-image:
 linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
 linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
 background-size:40px 40px;
 z-index:-1;
 pointer-events:none;
}

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

a{
 text-decoration:none;
 color:inherit;
}

.container{
 width:min(1200px,calc(100% - 2rem));
 margin:auto;
}

.site-header{
 position:sticky;
 top:0;
 z-index:999;
 backdrop-filter:blur(12px);
 background:rgba(13,17,23,.85);
 border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
 display:flex;
 justify-content:space-between;
 align-items:center;
 padding:18px 0;
 gap:20px;
}

.brand{
 font-size:1.6rem;
 font-weight:800;
 background:var(--ebs-gradient);
 -webkit-background-clip:text;
 -webkit-text-fill-color:transparent;
}

.menu{
 display:flex;
 list-style:none;
 gap:14px;
 align-items:center;
 flex-wrap:wrap;
}

.menu a,
.button{
 padding:12px 20px;
 border-radius:14px;
 transition:.3s ease;
 font-weight:600;
}

.menu a:hover{
 background:rgba(255,255,255,.06);
}

.button-primary,
.button-secondary,
.button{
 background:var(--ebs-gradient);
 color:#111;
 box-shadow:0 10px 30px rgba(25,163,74,.25);
}

.button:hover{
 transform:translateY(-3px);
 box-shadow:0 16px 40px rgba(255,193,7,.25);
}

.hero{
 min-height:88vh;
 display:grid;
 grid-template-columns:1fr 1fr;
 align-items:center;
 gap:50px;
 padding:100px 0;
}

.hero h2{
 font-size:4rem;
 line-height:1.05;
 margin-bottom:24px;
 font-weight:800;
}

.hero p{
 font-size:1.1rem;
 color:var(--ebs-muted);
 margin-bottom:30px;
}

.hero-image{
 border-radius:30px;
 box-shadow:var(--ebs-shadow);
 border:1px solid rgba(255,255,255,.08);
}

.hero-actions{
 display:flex;
 gap:16px;
 flex-wrap:wrap;
}

.section{
 padding:100px 0;
}

.section-header{
 text-align:center;
 margin-bottom:50px;
}

.section-header h2{
 font-size:2.5rem;
 margin-bottom:14px;
}

.section-header p{
 color:var(--ebs-muted);
}

.card-grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
 gap:28px;
}

.course-card{
 background:var(--ebs-card);
 border:1px solid var(--ebs-border);
 border-radius:28px;
 overflow:hidden;
 backdrop-filter:blur(14px);
 transition:.4s ease;
 box-shadow:var(--ebs-shadow);
}

.course-card:hover{
 transform:translateY(-10px);
 border-color:rgba(255,213,74,.35);
}

.course-card img{
 height:240px;
 width:100%;
 object-fit:cover;
}

.card-body{
 padding:26px;
}

.card-body h3{
 margin-bottom:12px;
 font-size:1.35rem;
}

.card-body p{
 color:var(--ebs-muted);
 margin-bottom:20px;
}

.badge{
 display:inline-block;
 padding:7px 14px;
 border-radius:100px;
 font-size:.75rem;
 font-weight:700;
 margin-bottom:16px;
 background:rgba(25,163,74,.18);
 color:#7CFFAF;
}

.site-footer{
 margin-top:80px;
 background:#111827;
 border-top:1px solid rgba(255,255,255,.08);
 padding:70px 0 40px;
 text-align:center;
}

.footer-inner p{
 color:var(--ebs-muted);
 margin-bottom:12px;
}

.reveal{
 opacity:0;
 transform:translateY(40px);
 transition:1s ease;
}

.reveal.active{
 opacity:1;
 transform:translateY(0);
}

@media(max-width:900px){
 .hero{
  grid-template-columns:1fr;
  text-align:center;
 }

 .hero h2{
  font-size:2.7rem;
 }

 .hero-actions{
  justify-content:center;
 }

 .header-inner{
  flex-direction:column;
 }

 .menu{
  justify-content:center;
 }
}


/* =========================
   CONTACT PAGE
========================= */

.contact-wrapper{
    max-width:800px;
    margin:80px auto;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:50px;
    backdrop-filter:blur(12px);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.contact-wrapper h1{
    text-align:center;
    margin-bottom:20px;
    font-size:2.5rem;
}

.contact-wrapper p{
    text-align:center;
    color:var(--ebs-muted);
    margin-bottom:40px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
    color:#fff;
    font-size:1rem;
}

.contact-form textarea{
    min-height:220px;
    resize:vertical;
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-menu{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.float-btn{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--ebs-gradient);
    color:#111;
    font-weight:700;
    box-shadow:0 12px 30px rgba(25,163,74,.35);
    transition:.3s ease;
}

.float-btn:hover{
    transform:translateY(-4px) scale(1.05);
}

/* =========================
   WORDPRESS ADMIN
========================= */

#wpadminbar{
    background:#0D1117 !important;
}

.login h1 a{
    background-image:url('https://escola.ebsmultimidia.net/wp-content/uploads/2026/05/logo-ebs.png') !important;
    background-size:contain !important;
    width:100% !important;
}

body.login{
    background:linear-gradient(180deg,#0D1117,#111827);
}

.login form{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.login label{
    color:#fff !important;
}

.login input[type=text],
.login input[type=password]{
    background:#111827 !important;
    border:1px solid rgba(255,255,255,.08) !important;
    color:#fff !important;
}

.wp-core-ui .button-primary{
    background:linear-gradient(135deg,#19A34A,#FFD54A) !important;
    border:none !important;
    color:#111 !important;
}
/* =========================
   BADGE PACOTES
========================= */

.badge-pacote{
    background: rgba(255,193,7,.18);
    color: #FFD54A;
}
/* =========================
   TIPOGRAFIA GLOBAL
========================= */

main{
    width:min(1200px, calc(100% - 2rem));
    margin:auto;
}

section{
    width:100%;
}

.section-header,
.text-content,
.entry-content{
    max-width:900px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2,
.entry-content h2,
.text-content h2{
    font-size:2.6rem;
    line-height:1.2;
    margin-bottom:24px;
    font-weight:800;
    color:#fff;
}

.section-header h3,
.entry-content h3,
.text-content h3,
.section-header p,
.entry-content p,
.text-content p{
    font-size:1.1rem;
    line-height:1.9;
    color:#B8C1CC;
    margin-bottom:24px;
    text-align:justify;
}

/* =========================
   BENEFÍCIOS DOS PACOTES
========================= */

.package-benefits{
    margin-top:20px;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.package-benefits span{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    padding:8px 14px;
    border-radius:100px;
    font-size:.82rem;
    color:#FFD54A;
}

/* =========================
   BOTÕES DUPLOS
========================= */

.card-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}

.button-whatsapp{
    background:#25D366;
    color:#111;
}

.button-whatsapp:hover{
    background:#32e676;
}
/* =========================
   SINGLE PACOTE
========================= */

.single-course{
    max-width:1000px;
    margin:auto;
}

.single-thumb{
    margin-bottom:40px;
}

.single-thumb img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.entry-content{
    margin-top:40px;
}

.entry-content p{
    margin-bottom:24px;
}

.entry-content ul{
    margin:20px 0;
    padding-left:20px;
}

.entry-content li{
    margin-bottom:12px;
    color:#B8C1CC;
}
/* =========================
   INFORMAÇÕES DOS PACOTES
========================= */

.package-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:40px;
    margin-bottom:40px;
}

.info-box{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:24px;
    backdrop-filter:blur(12px);
}

.info-box strong{
    display:block;
    margin-bottom:10px;
    color:#FFD54A;
    font-size:1rem;
}

.info-box span{
    color:#F5F7FA;
    line-height:1.6;
}
/* =========================
   SLIDER
========================= */

.ebs-slider{
    padding-bottom:60px;
}

.slider-card{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    height:560px;
    box-shadow:0 25px 80px rgba(0,0,0,.45);
}

.slider-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.slider-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.15),
        rgba(0,0,0,.82)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:50px;
}

.slider-overlay h2{
    font-size:3rem;
    margin-bottom:20px;
    color:#fff;
}

.slider-overlay h3{
    max-width:800px;
    color:#ddd;
    margin-bottom:30px;
}

.swiper-pagination-bullet{
    background:#FFD54A !important;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    opacity:1;
}

@media(max-width:768px){

    .slider-card{
        height:460px;
    }

    .slider-overlay{
        padding:30px;
    }

    .slider-overlay h2{
        font-size:2rem;
    }

}