* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #ff004d;
  --red-dark: #a1021f;
  --black: #0a0a0a;
  --dark: #0f1013;
  --card: #151518;
  --gray: #8d8d95;
  --light: #f5f5f5;
  --text: #d7d7d7;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 25px 70px rgba(0,0,0,0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(16px);
  /*border-bottom: 1px solid var(--border);*/
}

a{ text-decoration: none;}
.nav-container {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2rem;
  font-weight: 700;
}

.logo strong {
  color: var(--red);
}
.logo .digi{
  color: var(--light);
}
/*
.logo-icon {
  width: 34px;
  height: 34px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-weight: 900;
}*/

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  color: var(--light);
  font-size: 0.95rem;
  position: relative;
}

.nav a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--red);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.btn-header {
  border: 1px solid var(--red);
  padding: 12px 24px;
  border-radius: 999px;
  color: #8de28e;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
}
/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
  radial-gradient(circle at 75% 30%, rgba(255,0,77,.18), transparent 25%),
  radial-gradient(circle at 20% 70%, rgba(255,0,77,.08), transparent 20%),
  linear-gradient(180deg,#09090b,#050505);
}

.hero-bg::before {
  content: "";
  position: absolute;
  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;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,0,77,.4);
  color: var(--red);
  margin-bottom: 24px;
  font-size: .85rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 25px;
  font-weight: 900;
}

.hero h1 span {
  color: var(--red);
}

.hero-text {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--light);
  margin-bottom: 20px;
}

.hero-text strong {
  color: var(--red);
}

.hero-subtext {
  color: var(--text);
  max-width: 620px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: .3s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg,var(--red),#ff276f);
  color: white;
  box-shadow: 0 10px 40px rgba(255,0,77,.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.15);
  color: white;
}

.btn-outline:hover {
  border-color: var(--red);
}

/* FOTO DA ROSANA */

.hero-image-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 680px;
}

.hero-person {
  top: 92px;
  max-width: 525px;
  width: min(112%, 640px);
  position: relative;
  z-index: 3;
  transform: translateX(-100px);
  filter: drop-shadow(0 0 80px rgba(255,0,77,.18));
}

.circle-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 2px solid rgba(255,0,77,.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-glow::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px solid rgba(255,0,77,.15);
}

/* CARDS LATERAIS */

.info-card {
  position: absolute;
  width: 300px;
  background: rgba(21,21,24,.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  gap: 15px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.info-card i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,0,77,.15);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.info-card p {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.5;
}

.card-one {
  top: 130px;
  right: -64px;
}

.card-two {
  top: 305px;
  right: -126px;
}

.card-three {
  top: 480px;
  right: -110px;
}
/* SEÇÕES */

.section {
  padding: 120px 0;
}

.section-tag {
  color: var(--red);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-title h2 {
  font-size: clamp(2rem,4vw,3.5rem);
  margin: 20px 0;
}

.section-title p {
  color: var(--text);
  line-height: 1.8;
}

/* SOBRE */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-box {
  height: 450px;
  border-radius: 30px;
  background:
  linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
  url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=1200')
  center/cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;

  border: 1px solid var(--border);
}

.play-button {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--red);

  display: grid;
  place-items: center;

  font-size: 1.8rem;
}

.video-box p {
  color: white;
  font-weight: 600;
}

.about-content h2 {
  font-size: clamp(2rem,4vw,3.3rem);
  margin: 25px 0;
  line-height: 1.2;
}

.about-content h2 span {
  color: var(--red);
}

.about-content p {
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.9;
}

.quote {
  margin-top: 35px;
  padding-left: 20px;
  border-left: 4px solid var(--red);
}

.quote strong {
  display: block;
  font-size: 1.3rem;
}

.quote span {
  color: var(--red);
}

/* NÚMEROS */

.numbers {
  padding: 80px 0;
  background: #070707;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

.number-card {
  background: #111114;
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  border: 1px solid var(--border);
}

.number-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 15px;
}

.number-card h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.number-card p {
  color: var(--text);
}

/* SERVIÇOS */

.services {
  background: #09090b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.service-card {
  background: #131317;
  padding: 35px;
  border-radius: 25px;
  border: 1px solid var(--border);

  transition: .4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,0,77,.3);
}

.service-card i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text);
  line-height: 1.7;
}

/* CURSOS */

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.course-card {
  background: #131317;
  padding: 35px;
  border-radius: 25px;
  border: 1px solid var(--border);
}

.course-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  border: 1px solid rgba(255,0,77,.25);
  padding: 8px 15px;
  border-radius: 999px;
}

.course-card h3 {
  margin-bottom: 15px;
}

.course-card p {
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.8;
}

.course-card a {
  color: var(--red);
  font-weight: 700;
}

/* CONTATO */

.contact {
  background:
  radial-gradient(circle at right, rgba(255,0,77,.15), transparent 25%),
  #070707;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-content h2 {
  font-size: clamp(2rem,4vw,3.5rem);
  margin: 20px 0;
}

.contact-content p {
  color: var(--text);
  line-height: 1.8;
}

.contact-list {
  margin-top: 30px;
}

.contact-list p {
  margin-bottom: 15px;
}

.contact-list i {
  color: var(--red);
  margin-right: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  background: #111114;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 18px;
  color: white;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 180px;
  resize: none;
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: #050505;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer p {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111114;

  display: grid;
  place-items: center;

  transition: .3s;
}

.footer-social a:hover {
  background: var(--red);
}

.footer-social i {
  color: white;
}

/* ANIMAÇÃO */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
  .header.header-scroll {
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

/* RESPONSIVO */

@media(max-width: 1100px){

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-area {
    min-height: auto;
    flex-direction: column;
  }

  .hero-person {
    top:20px;
    max-width: 460px;
    width: min(100%, 460px);
    transform: none;
  }
.circle-glow{
     top:37%; 
  }
  .card-one,
  .card-two,
  .card-three {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 20px;
    width: 100%;
  }

  .numbers-grid,
  .services-grid,
  .courses-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px){

  .menu-toggle {
    display: block;
  }
  .circle-glow{
     top:37%; 
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #09090b;
    flex-direction: column;
    padding: 25px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .numbers-grid,
  .services-grid,
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1.15rem;
  }

}
