/*
Theme Name: Fix Academy
Theme URI: https://fixcelularesacademy.com
Description: Tema hijo personalizado para Fix Celulares Academy.
Author: Andrés Villan
Template: astra
Version: 1.0
Text Domain: fix-academy
*/

:root{
  --bg:#05080f;
  --bg2:#080d18;
  --card:#0d1424;
  --blue:#2563ff;
  --blue2:#4da3ff;
  --text:#ffffff;
  --muted:#c8d2e3;
  --border:rgba(255,255,255,.11);
}

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

html{
  scroll-behavior:smooth;
}

body.fix-home{
  background:var(--bg);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  overflow-x:hidden;
}

body.fix-home a{
  text-decoration:none;
}

/* HEADER */

.fix-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 6%;
  background:rgba(5,8,15,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}

.fix-logo img{
  width:105px;
  display:block;
}

.fix-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.fix-nav a{
  color:#fff;
  font-size:17px;
  font-weight:800;
}

.fix-nav a:hover{
  color:var(--blue2);
}

.nav-btn{
  background:var(--blue);
  padding:17px 33px;
  border-radius:999px;
  box-shadow:0 18px 35px rgba(37,99,255,.35);
}

/* HERO */

.fix-hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1.25fr;
  align-items:center;
  gap:60px;
  padding:150px 6% 90px;
  background:
  radial-gradient(circle at 15% 30%, rgba(37,99,255,.25), transparent 35%),
  linear-gradient(135deg,#05080f 0%,#071323 100%);
}

.fix-hero-content{
  max-width:620px;
}

.fix-tag{
  display:inline-flex;
  background:linear-gradient(135deg,#1e6bff,#2947ff);
  color:#fff;
  padding:12px 24px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:28px;
  box-shadow:0 14px 35px rgba(37,99,255,.35);
}

.fix-tag.small{
  margin-bottom:22px;
}

.fix-hero h1{
  font-size:clamp(48px,6vw,82px);
  line-height:1.02;
  color:#fff;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:28px;
}

.fix-subtitle{
  color:var(--muted);
  font-size:23px;
  line-height:1.6;
  margin-bottom:42px;
}

.fix-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.fix-buttons a,
.fix-final a{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:62px;
  padding:0 38px;
  border-radius:999px;
  font-size:18px;
  font-weight:900;
}

.fix-btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 18px 38px rgba(37,99,255,.38);
}

.fix-btn-secondary{
  color:#fff;
  border:2px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.04);
}

.fix-hero-panel{
  position:relative;
}

.fix-hero-panel img{
  width:100%;
  border-radius:34px;
  display:block;
  box-shadow:0 40px 100px rgba(0,0,0,.55);
  border:1px solid var(--border);
}

.fix-glow{
  position:absolute;
  inset:8%;
  background:rgba(37,99,255,.35);
  filter:blur(80px);
  z-index:-1;
}

/* GENERAL SECTIONS */

.fix-benefits,
.fix-courses,
.fix-campus,
.fix-faq,
.fix-final{
  padding:85px 6%;
}

.fix-section-title{
  max-width:850px;
  margin-bottom:55px;
}

.fix-section-title.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.fix-section-title span{
  color:var(--blue2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:15px;
}

.fix-section-title h2,
.fix-campus h2,
.fix-final h2{
  color:#fff;
  font-size:clamp(36px,4vw,58px);
  line-height:1.1;
  margin-top:14px;
  font-weight:900;
  letter-spacing:-1px;
}

/* BENEFITS */

.fix-benefits{
  background:#070b14;
}

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

.fix-card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border:1px solid var(--border);
  border-radius:28px;
  padding:34px;
  min-height:210px;
  box-shadow:0 25px 70px rgba(0,0,0,.25);
  transition:.25s ease;
}

.fix-card:hover{
  transform:translateY(-8px);
  border-color:rgba(77,163,255,.45);
}

.fix-card h3{
  color:#fff;
  font-size:25px;
  margin-bottom:16px;
}

.fix-card p{
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
}

/* COURSES */

.fix-courses{
  background:
  radial-gradient(circle at 80% 20%, rgba(37,99,255,.20), transparent 35%),
  #05080f;
}

.fix-course-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.fix-course-card{
  background:linear-gradient(180deg,#10192c,#0a101d);
  border:1px solid var(--border);
  border-radius:32px;
  padding:44px;
  min-height:330px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.fix-course-card.featured{
  border-color:rgba(37,99,255,.65);
  box-shadow:0 35px 90px rgba(37,99,255,.18);
}

.fix-course-card h3{
  color:#fff;
  font-size:40px;
  margin-bottom:18px;
}

.fix-course-card p{
  color:var(--muted);
  font-size:20px;
  line-height:1.6;
  margin-bottom:34px;
}

.fix-course-card a{
  color:#fff;
  background:var(--blue);
  display:inline-flex;
  width:max-content;
  padding:15px 28px;
  border-radius:999px;
  font-weight:900;
}

/* CAMPUS */

.fix-campus{
  background:#070b14;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.fix-campus p{
  color:var(--muted);
  font-size:21px;
  line-height:1.6;
  margin-top:20px;
}

.campus-box{
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  border:1px solid var(--border);
  border-radius:32px;
  padding:42px;
}

.campus-box p{
  margin:0 0 20px;
  color:#fff;
  font-weight:800;
}

/* FAQ */

.fix-faq{
  background:#05080f;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  max-width:1050px;
  margin:auto;
}

.faq-grid div{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
}

.faq-grid h3{
  color:#fff;
  font-size:23px;
  margin-bottom:12px;
}

.faq-grid p{
  color:var(--muted);
  font-size:18px;
}

/* FINAL CTA */

.fix-final{
  background:linear-gradient(135deg,#123dff,#05080f);
  text-align:center;
}

.fix-final h2{
  max-width:850px;
  margin:0 auto 22px;
}

.fix-final p{
  color:#dce6ff;
  max-width:720px;
  margin:0 auto 35px;
  font-size:21px;
  line-height:1.6;
}

/* FOOTER */

.fix-footer{
  background:#03050a;
  border-top:1px solid var(--border);
  padding:32px 6%;
  text-align:center;
}

.fix-footer p{
  color:#9ca8ba;
}

/* RESPONSIVE */

@media(max-width:900px){

  .fix-header{
    position:relative;
    flex-direction:column;
    gap:16px;
    padding:20px;
  }

  .fix-nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
  }

  .fix-nav a{
    font-size:15px;
  }

  .nav-btn{
    padding:13px 22px;
  }

  .fix-hero{
    grid-template-columns:1fr;
    padding:60px 24px 70px;
  }

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

  .fix-subtitle{
    font-size:20px;
  }

  .fix-buttons a{
    width:100%;
  }

  .fix-benefit-grid,
  .fix-course-grid,
  .fix-campus,
  .faq-grid{
    grid-template-columns:1fr;
  }

  .fix-benefits,
  .fix-courses,
  .fix-campus,
  .fix-faq,
  .fix-final{
    padding:75px 24px;
  }
}
/*======================================
=            CURSOS PREMIUM            =
======================================*/

.fix-course-card{
    overflow:hidden;
    padding:0;
    transition:.35s;
    background:#0b1325;
}

.fix-course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 70px rgba(37,99,255,.18);
}

.course-img{
    overflow:hidden;
    height:190px;
}

.course-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.fix-course-card:hover img{
    transform:scale(1.06);
}

.course-content{
    padding:28px;
}

.course-level{
    display:inline-block;
    background:#2563ff;
    color:#fff;
    padding:7px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.course-content h3{
    font-size:30px;
    margin-bottom:14px;
    color:#fff;
}

.course-content p{
    font-size:18px;
    line-height:1.7;
    color:#c8d2e3;
    margin-bottom:30px;
}

.course-content a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 30px;
    border-radius:999px;
    background:#2563ff;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.course-content a:hover{
    background:#3b82f6;
}
/* CAMPUS PREMIUM */

.campus-content{
  max-width:620px;
}

.campus-list{
  margin-top:30px;
}

.campus-list p{
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  padding:16px 18px;
  border-radius:16px;
  margin-bottom:14px;
  font-size:18px;
}

.campus-screen{
  background:#05080f;
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  padding:28px;
  min-height:360px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.screen-top{
  height:26px;
  width:130px;
  background:#2563ff;
  border-radius:999px;
  margin-bottom:35px;
}

.screen-line{
  height:18px;
  width:65%;
  background:rgba(255,255,255,.16);
  border-radius:999px;
  margin-bottom:18px;
}

.screen-line.long{
  width:90%;
}

.screen-card{
  height:95px;
  background:linear-gradient(135deg,rgba(37,99,255,.45),rgba(255,255,255,.08));
  border-radius:22px;
  margin-top:35px;
}

.screen-card.small{
  height:70px;
  margin-top:18px;
  background:rgba(255,255,255,.08);
}
/* ================================
   LEARNPRESS CAMPUS - FIX ACADEMY
================================ */

body:not(.fix-home){
  background:#05080f;
}

.learn-press-profile-course__tab__inner,
#learn-press-profile,
.lp-user-profile{
  background:#05080f !important;
  color:#fff !important;
}

.lp-user-profile,
#learn-press-profile{
  max-width:1180px;
  margin:70px auto;
  padding:45px;
  border-radius:32px;
  background:rgba(5,8,15,.92) !important;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 35px 90px rgba(0,0,0,.45);
}

.lp-profile-content,
.lp-profile-content-area,
.lp-profile-right{
  background:transparent !important;
  color:#fff !important;
}

.lp-profile-username,
.lp-user-profile .lp-profile-username,
#learn-press-profile h2,
#learn-press-profile h3,
#learn-press-profile h4{
  color:#fff !important;
  font-weight:900;
}

.lp-profile-left{
  background:transparent !important;
}

.lp-profile-nav{
  background:#080d18 !important;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  overflow:hidden;
}

.lp-profile-nav-tabs li,
.lp-profile-nav-tabs li a{
  background:transparent !important;
  color:#fff !important;
  font-weight:800;
}

.lp-profile-nav-tabs li.active,
.lp-profile-nav-tabs li:hover{
  background:#2563ff !important;
}

.lp-profile-nav-tabs li.active a,
.lp-profile-nav-tabs li:hover a{
  color:#fff !important;
}

.lp-profile-content .lp-profile-box,
.lp-profile-content .dashboard-statistic__item,
.lp-profile-content .profile-courses,
.lp-profile-content .learn-press-courses[data-layout="grid"] .course,
.learn-press-profile-course{
  background:#0d1424 !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.10) !important;
  border-radius:22px !important;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.dashboard-statistic__item{
  padding:28px !important;
}

.dashboard-statistic__item span,
.dashboard-statistic__item p,
.lp-profile-content p,
.lp-profile-content span,
.lp-profile-content a{
  color:#c8d2e3 !important;
}

.dashboard-statistic__item strong,
.dashboard-statistic__item .number,
.lp-profile-content .count{
  color:#fff !important;
  font-weight:900;
}

.lp-button,
.learn-press-button,
button.lp-button,
input.lp-button{
  background:#2563ff !important;
  color:#fff !important;
  border:none !important;
  border-radius:999px !important;
  padding:14px 26px !important;
  font-weight:900 !important;
  box-shadow:0 16px 35px rgba(37,99,255,.32);
}

.lp-button:hover,
.learn-press-button:hover{
  background:#3b82f6 !important;
  color:#fff !important;
}

.lp-user-profile img.avatar{
  border-radius:50%;
  border:4px solid rgba(37,99,255,.45);
  box-shadow:0 18px 40px rgba(37,99,255,.22);
}

.lp-profile-content table,
.lp-profile-content tr,
.lp-profile-content td,
.lp-profile-content th{
  background:#0d1424 !important;
  color:#fff !important;
  border-color:rgba(255,255,255,.10) !important;
}

@media(max-width:900px){
  .lp-user-profile,
  #learn-press-profile{
    margin:30px 15px;
    padding:24px;
  }
}