/* Estilos globais com novo padrão de cores */
:root {
  --text-50: #0a0b0f;
  --text-100: #14161f;
  --text-200: #292d3d;
  --text-300: #3d435c;
  --text-400: #525a7a;
  --text-500: #667099;
  --text-600: #858dad;
  --text-700: #a3a9c2;
  --text-800: #c2c6d6;
  --text-900: #e0e2eb;
  --text-950: #f0f1f5;

  --background-50: #0a0b10;
  --background-100: #131620;
  --background-200: #262d40;
  --background-300: #394360;
  --background-400: #4d5980;
  --background-500: #60709f;
  --background-600: #808cb3;
  --background-700: #9fa9c6;
  --background-800: #bfc6d9;
  --background-900: #dfe2ec;
  --background-950: #eff1f5;

  --primary-50: #17020b;
  --primary-100: #2e0516;
  --primary-200: #5d092c;
  --primary-300: #8b0e42;
  --primary-400: #ba1258;
  --primary-500: #e8176e;
  --primary-600: #ed458b;
  --primary-700: #f174a8;
  --primary-800: #f6a2c5;
  --primary-900: #fad1e2;
  --primary-950: #fde8f1;

  --secondary-50: #060a13;
  --secondary-100: #0d1426;
  --secondary-200: #19284d;
  --secondary-300: #263c73;
  --secondary-400: #335099;
  --secondary-500: #4064bf;
  --secondary-600: #6683cc;
  --secondary-700: #8ca2d9;
  --secondary-800: #b3c1e6;
  --secondary-900: #d9e0f2;
  --secondary-950: #eceff9;

  --accent-50: #030716;
  --accent-100: #060e2d;
  --accent-200: #0c1c5a;
  --accent-300: #122a87;
  --accent-400: #1837b4;
  --accent-500: #1f45e0;
  --accent-600: #4b6ae7;
  --accent-700: #7890ed;
  --accent-800: #a5b5f3;
  --accent-900: #d2daf9;
  --accent-950: #e9ecfc;


  /* Cores semânticas */
  --success: #28A745;
  --warning: #FFC107;
  --danger: #DC3545;
  --info: #17A2B8;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-800);
  line-height: 1.6;
  background-color: var(--background-50);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: var(--text-900);
}

p {
  margin: 0 0 1.5rem 0;
  color: var(--text-700);
}

button {
  border: none;
  padding: 1rem 2rem;
  border-radius: .5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: calc(100% - 4rem);
  background: var(--background-50);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-500);
  text-decoration: none;
}

.nav-desktop a {
  margin: 0 1rem;
  text-decoration: none;
  color: var(--text-700);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--primary-500);
}

.cta {
  background: var(--primary-500);
  color: var(--text-950);
}

.cta:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 23, 110, 0.3);
}

.nav-mobile {
  display: none;
}

.hamburger {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-700);
}

/* Hero Section */
.hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-950);
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 45, 61, 0.8);
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: var(--text-950);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-large {
  background: var(--primary-500);
  color: var(--text-950);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-large:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Value Proposition */
.value-prop {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--background-50);
}

.value-prop h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-900);
}

.value-prop p {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit {
  display: grid;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit .icon {
  width: 100%;
  border-radius: .5rem;
  object-fit: contain;
}

.benefit button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.benefits-grid h3 {
  margin-bottom: 1rem;
  color: var(--primary-500);
}

.benefits-grid p {
  text-align: left;
  margin: 0 0 1rem 0;
}

.benefits-grid i {
  width: 100%;
  margin: 1rem 0 .5rem 0;
  text-align: left;
  font-size: 2.5rem;
}

.umbrella-on-floor::before {
  content: "\1F3D6\FE0F";
  /* Umbrella on floor (🏖️) */
}

.wad-of-money::before {
  content: "\1F4B5";
  /* Money bag (💰) */
  /* Alternative: "\1F4B5" for dollar banknote (💵) */
}

.hotel-bell::before {
  content: "\1F514";
  /* Bell (🔔) */
}

.question-mark::before {
  content: "\2753";
  /* Red question mark (❓) */
  /* Alternative: "\003F" for standard "?" */
}

/* How It Works */
.process {
  text-align: center;
}

.process h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-900);
}

.steps {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-500);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  width: 20%;
  background: var(--background-100);
  padding: 1rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-500);
  color: var(--text-950);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  border: 5px solid white;
}

.step h3 {
  color: var(--primary-500);
  margin-bottom: 1rem;
}

/* Benefits */
.benefits {
  background: var(--background-50);
  text-align: center;
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-900);
}

.benefits-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  gap: 3rem;
  text-align: left;
}

.problems,
.solutions {
  flex: 1;
  background: var(--background-100);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.problems h3,
.solutions h3 {
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.problems ul,
.solutions ul {
  list-style: none;
  padding: 0;
}

.problems li,
.solutions li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.problems li::before {
  content: '✖';
  position: absolute;
  left: 0;
  color: var(--danger);
}

.solutions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-900);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: var(--background-100);
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.author {
  font-weight: 600;
  color: var(--primary-500);
  margin-top: 1rem;
}

.stats {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-700);
}

/* Courses */
.courses {
  text-align: center;
  background: var(--background-50);
}

.courses h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-900);
}

.course-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.course {
  background: var(--background-100);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.course:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course h3 {
  color: var(--primary-500);
  margin-bottom: 1rem;
}

.cta-small {
  background: var(--primary-500);
  color: var(--text-950);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cta-small:hover {
  background: var(--primary-600);
}

/* FAQ */
.faq {
  text-align: center;
  background: var(--background-100);
}

.faq h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-900);
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--background-200);
  padding-bottom: 1.5rem;
}

.faq-item h3 {
  color: var(--primary-500);
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after {
  content: '+';
  font-size: 1.5rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--text-950);
  padding: 5rem 1rem;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--text-100);
}

/* Footer */
.footer {
  color: var(--text-950);
  padding: 3rem 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-100);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-300);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links img {
  width: 30px;
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-links img:hover {
  opacity: 1;
}

.contact-info p {
  margin: 0.5rem 0;
  color: var(--text-300);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: var(--background-100);
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.modal h2 {
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--background-200);
  border-radius: 5px;
  font-size: 1rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-500);
    text-decoration: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .benefits-grid,
  .testimonial-grid,
  .course-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .steps::before {
    display: none;
  }

  .step {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
  }

  .benefits-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cta-large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

.dash {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
  background-color: var(--background-50);
  border-radius: 1rem;
}

.card {
  display: grid;
  align-content: start;
  padding: 1rem;
  border-radius: .5rem;
  background-color: var(--background-200);
  transition: 1s;
}

.card.shadow {
  box-shadow:
    0 0 20px 5px rgba(0, 123, 255, 0.3),
    0 0 30px 10px rgba(0, 123, 255, 0.2),
    0 0 40px 15px rgba(0, 123, 255, 0.1);
}

.right {
  text-align: right;
  justify-content: end;
}

.logo {
    width: 50px;
    margin: auto;
    margin-top: .5rem;
}

.d-grid {
  display: grid;
}

/* Input Field Style */
input[type="text"],
input[type="password"],
input[type="email"] {
  width: calc(100% - 32px);
  padding: 10px 15px;
  margin: 10px 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease-in-out;
}

input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button Style */
button {
  width: 100%;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button.no-bg {
    background: none;
}

button svg{
  width: 30px;
}

button:hover {
  background-color: #0056b3;
}

button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* Error Message */
.error {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.d-flex {
  display: flex;
}

.gap-l {
  gap: 1rem;
}

.gap-m {
  gap: .5rem;
}

.gap-s {
  gap: .2rem;
}

.jc-between {
  justify-content: space-between;
}

.ac-start {
  align-content: start;
}