/* =========================================================
   CompuWorks Landing Page
   Estrutura:
   - index.html
   - Styles/style.css
   - Images/
   ========================================================= */

:root {
  --cw-blue: #65CFE9;
  --cw-blue: #65CFE9;
  --cw-purple: #5C068C;
  --cw-orange: #FE5000;
  --cw-white: #FFFFFF;
  --cw-text: #250033;
  --cw-max-width: 1440px;
  --cw-container-padding: clamp(24px, 5vw, 72px);
  --cw-radius: 28px;
  --cw-shadow: 0 18px 45px rgba(92, 6, 140, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--cw-text);
  background: var(--cw-white);
  font-size: 16px;
  line-height: 1.35;
}

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

a {
  color: inherit;
}

.container {
  width: min(100%, var(--cw-max-width));
  margin: 0 auto;
  padding-left: var(--cw-container-padding);
  padding-right: var(--cw-container-padding);
}

.section-blue {
  background-color: var(--cw-blue);
}

.section-purple {
  background-color: var(--cw-purple);
  color: var(--cw-white);
}

.section-white {
  background-color: var(--cw-white);
}

/* Botões: base laranja + rollover inspirado no botão “SOLICITAR PROPOSTA” da CompuWorks */
.btn {
  --button-padding-y: 13px;
  --button-padding-x: 28px;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: var(--button-padding-y) var(--button-padding-x);
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.btn span {
  display: inline-block;
  transition: transform 220ms ease;
}

.btn--orange {
  color: var(--cw-white);
  background: var(--cw-orange);
  box-shadow: 0 8px 22px rgba(254, 80, 0, 0.25);
}

.btn--orange:hover,
.btn--orange:focus-visible {
  color: var(--cw-white);
  background: var(--cw-purple);
  border-color: var(--cw-white);
  box-shadow: 0 12px 28px rgba(92, 6, 140, 0.32);
  transform: translateY(-2px);
}

.btn--orange:hover span,
.btn--orange:focus-visible span {
  transform: translateX(5px);
}

.section-purple .btn--orange:hover,
.section-purple .btn--orange:focus-visible {
  background: var(--cw-blue);
  color: var(--cw-purple);
  border-color: var(--cw-blue);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--cw-blue);
  background:
    url("../Images/dots.png"), var(--cw-blue);
	background-position:center;
	background-attachment:  cover;
	background-repeat: no-repeat;
}
/*
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}*/
/*
.hero::before {
  left: -250px;
  top: 210px;
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.08),
    0 0 0 45px rgba(255, 255, 255, 0.06),
    0 0 0 72px rgba(255, 255, 255, 0.05);
}

.hero::after {
  right: -290px;
  top: 255px;
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.08),
    0 0 0 45px rgba(255, 255, 255, 0.06),
    0 0 0 72px rgba(255, 255, 255, 0.05);
}
*/
.hero__container {
  position: relative;
  z-index: 1;
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(52px, 6vw, 86px); 
}

.hero__brand {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(48px, 6vw, 92px);
}

.brand-logo {
  width: clamp(190px, 23vw, 330px);
  height: auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.98fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
}

.webinar-badge {
  width: min(100%, 500px);
  margin-left: clamp(0px, 2vw, 48px);
  margin-bottom: clamp(18px, 2vw, 32px);
}

.hero__benefit {
  max-width: 760px;
  padding-left: clamp(0px, 2vw, 46px);
}

.hero__benefit h2 {
  margin: 0 0 14px;
  color: var(--cw-purple);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.18;
}

.hero__benefit h3,
.audience h2 {
  margin: 0 0 10px;
  color: var(--cw-purple);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
}

.hero__benefit ul,
.audience ul {
  margin: 0 0 15px;
  padding-left: 1.1em;
  font-size: clamp(15px, 0.7vw, 16px);
  font-weight: 500;
}

.hero__right h1 {
  margin: 0 0 8px;
  color: var(--cw-purple);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: var(--cw-purple);
  font-size: clamp(24px, 2.7vw, 30px);
  font-weight: 800;
  line-height: 1.1;
}

.form-slot {
  min-height: clamp(180px, 16vw, 250px);
  margin: clamp(18px, 2vw, 30px) 0 18px;
  border-radius: 14px;
}

/* STATS */
.stats {
  text-align: center;
  padding: clamp(54px, 6vw, 88px) 0 clamp(50px, 5vw, 76px);
}

.stats h2 {
  max-width: 1020px;
  margin: 0 auto clamp(42px, 4vw, 68px);
  color: var(--cw-purple);
  font-size: clamp(24px, 2.1vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: start;
}

.stat-card strong {
  display: block;
  color: var(--cw-purple);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--cw-purple);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 400;
}

/* CTA BAND */
.cta-band {
  text-align: center;
  padding: clamp(64px, 6vw, 92px) 0;
}

.cta-band h2 {
  max-width: 1180px;
  margin: 0 auto 32px;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 800;
  line-height: 1.22;
}

/* INTRO / SECURITY */
.intro {
  min-height: clamp(800px, 42vw, 900px);
  background:
    linear-gradient(90deg, rgba(0, 20, 40, 0.10), rgba(0, 0, 0, 0.05)),
    url("../Images/security-bg-full.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: clamp(58px, 6vw, 104px) 0;
}

.intro__box {
  width: min(100%, 705px);
  margin-left: clamp(0px, 2vw, 36px);
  padding: clamp(34px, 4vw, 72px);
  border-radius: var(--cw-radius);
  color: var(--cw-white);
  background: rgba(101, 207, 233, 0.78);
  backdrop-filter: blur(2px);
  box-shadow: var(--cw-shadow);
}

.intro__box h2 {
  margin: 0 0 20px;
  font-size: clamp(24px, 1.2vw, 30px);
  font-weight: 800;
  line-height: 1.16;
}

.intro__box p {
  margin: 0 0 20px;
  font-size: clamp(15px, 0.7vw, 16px);
  font-weight: 400;
}

.intro__box .btn {
  margin-top: 14px;
}

/* SPEAKERS */
.speakers {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 6vw, 100px) 0 clamp(86px, 8vw, 150px);
  
}
/*
.speakers::before {
  content: "";
  position: absolute;
  inset: 160px 0 auto 0;
  width: min(100%, 980px);
  height: 430px;
  margin: auto;
  opacity: 0.35;
  background:
    linear-gradient(var(--cw-blue), var(--cw-blue)) 50% 0 / 2px 100% no-repeat,
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(101,207,233,0.65) 43px, transparent 45px),
    repeating-linear-gradient(0deg, transparent 0 55px, rgba(101,207,233,0.35) 56px, transparent 58px);
  mask-image: radial-gradient(ellipse at center, black 0 55%, transparent 72%);
  pointer-events: none;
}
*/
.speakers .container {
  position: relative;
  z-index: 1;
}

.speakers h2 {
  margin: 0 0 clamp(24px, 7vw, 40px);
  text-align: center;
  color: var(--cw-blue);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 800;
}

.speakers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(80px, 12vw, 245px);
  max-width: 1050px;
  margin: 0 auto;
}

.speaker-card {
  text-align: center;
}

.speaker-card img {
  width: clamp(190px, 18vw, 300px);
  /*aspect-ratio: 1 / 1.28;*/
  object-fit: cover;
  margin: 0 auto 28px;
  /*border-radius: 0 12px 12px 12px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);*/
}

.speaker-card h3 {
  margin: 0 0 18px;
  color: var(--cw-blue);
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 800;
  line-height: 1.05;
}

.speaker-card p {
  margin: 0;
  color: var(--cw-white);
  font-size: clamp(15px, 0.8vw, 16px);
  line-height: 1.25;
}

/* FINAL CTA */
.final-cta {
  padding: clamp(78px, 7vw, 118px) 0;
}

.final-cta__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
}

.final-cta h2 {
  margin: 0;
  color: var(--cw-purple);
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.05;
}

.final-cta p {
  max-width: 900px;
  margin: 6px 0 0;
  color: var(--cw-purple);
  font-size: clamp(18px, 0.9vw, 24px);
  font-weight: 800;
  line-height: 1.16;
}

.footer {
  padding: 48px 0;
  text-align: center;
  background: var(--cw-white);
}

.footer p {
  margin: 0;
  color: var(--cw-purple);
  font-size: clamp(14px, 0.7vw, 15px);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero__right {
    max-width: 760px;
  }

  .form-slot {
    min-height: 170px;
  }

  .stats__grid {
    gap: 34px;
  }

  .final-cta__container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  :root {
    --cw-container-padding: 22px;
  }

  .hero__brand {
    margin-bottom: 42px;
  }

  .webinar-badge {
    margin-left: 0;
  }

  .hero__benefit {
    padding-left: 0;
  }

  .stats__grid,
  .speakers__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    gap: 32px;
  }

  .cta-band {
    text-align: left;
  }

  .intro {
    min-height: auto;
    background-position: center right 38%;
  }

  .intro__box {
    margin-left: 0;
    background: rgba(101, 207, 233, 0.84);
  }

  .speakers {
    padding-bottom: 88px;
  }

  .speakers h2 {
    margin-bottom: 54px;
  }

  .speakers__grid {
    gap: 68px;
  }

  .btn {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__right h1 {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 28px;
  }

  .form-slot {
    min-height: 140px;
  }

  .btn {
    font-size: 18px;
    min-height: 48px;
    padding-left: 22px;
    padding-right: 22px;
  }
}
#app .bEpFav .gZGbcL .kNWBeD {
	margin-left: 0px !important; 
	margin-right: 0px !important; 
	margin-top:25px !important;
}