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

:root {
  --primary: #e52329; /* Red */
  --primary-dark: #c41d22;
  --secondary: #0a1f3f; /* Dark Blue */
  --accent: #eab308; /* Yellow/Gold */
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-footer: #f1f5f9;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 24px 0;
}
.navbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.logo img { height: 50px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--secondary); }
.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(229, 35, 41, 0.4);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 800px;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
  background: var(--bg-light);
}

/* The diagonal cut background for the left text */
.hero-bg-left {
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 60%;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: 1;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}
/* Orange thin line along the diagonal */
.hero-bg-line {
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 61%;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: 0;
}

/* Right image */
.hero-image {
  position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}
.hero-subtitle {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-size: 64px;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-features {
  display: flex; gap: 24px; margin-bottom: 40px;
}
.hero-feature-item {
  display: flex; align-items: center; gap: 12px;
}
.hero-feature-item i {
  color: var(--accent); font-size: 24px;
}
.hero-feature-item span {
  font-size: 12px; font-weight: 700; color: var(--primary); line-height: 1.2;
}

/* HERO FORM */
.hero-form {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 550px;
  border: 1px solid #f1f5f9;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.form-input {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid #cbd5e1;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--text-light);
}
.form-input i { color: #cbd5e1; }
.form-input input, .form-input select {
  border: none; outline: none; width: 100%; font-family: inherit; font-size: 14px; background: transparent;
}
.btn-submit {
  width: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, #ff4b50 100%);
  color: #fff;
  font-weight: 700;
  padding: 16px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(229, 35, 41, 0.4);
  display: flex; justify-content: center; align-items: center; gap: 8px;
}

/* HERO BOTTOM SHAPE */
.hero-bottom-shape {
  position: absolute;
  bottom: -2px; left: 0; width: 100%;
  z-index: 20;
}
.hero-bottom-shape svg { width: 100%; height: auto; display: block; }

/* SECTIONS COMMON */
.section { padding: 100px 0; }
.section-title-wrap { margin-bottom: 48px; }
.section-subtitle {
  color: var(--accent); font-weight: 700; font-size: 12px; text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-size: 48px; font-weight: 900; color: var(--secondary); line-height: 1.2;
}
.section-title span { color: var(--primary); }
.section-desc { color: var(--text-light); font-size: 15px; }

/* DIFERENCIAIS GRID */
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.dif-card {
  background: #fff; border-radius: 16px; padding: 32px;
  box-shadow: none;
  border: 1px solid #e2e8f0;
}
.dif-card-1 {
  grid-column: 1 / 2; grid-row: 1 / 3;
  position: relative; overflow: hidden;
}
.dif-card-1::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 8px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}
.dif-card-2 { grid-column: 2 / 4; grid-row: 1 / 2; display: flex; align-items: center; gap: 24px; }
.dif-card-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
.dif-card-4 { grid-column: 3 / 4; grid-row: 2 / 3; }

.dif-icon-large { margin-bottom: 32px; text-align: center; }
.dif-icon-large img { width: 160px; margin: 0 auto; display: block; }
.dif-icon-horizontal img { width: 140px; }
.dif-icon-small { text-align: center; margin-bottom: 24px; }
.dif-icon-small img { width: 120px; margin: 0 auto; display: block; }
.dif-number { font-size: 16px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.dif-card h3 { font-size: 24px; font-weight: 800; color: var(--secondary); margin-bottom: 12px; }
.dif-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* METODO */
.metodo-wrap {
  text-align: center;
  position: relative;
  display: flex; justify-content: space-between;
  margin-top: 64px;
}
.metodo-line {
  position: absolute; top: 75px; left: 10%; right: 10%;
  border-top: 2px dashed var(--accent); z-index: 1;
}
.metodo-item {
  position: relative; z-index: 2;
  width: 20%;
}
.metodo-number {
  position: absolute; top: 0; left: 0; font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1;
}
.metodo-circle {
  width: 150px; height: 150px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}
.metodo-circle::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%); z-index: -1;
}
.metodo-circle i { font-size: 48px; color: var(--primary); }
.metodo-item h4 { font-size: 18px; font-weight: 800; color: var(--text-main); margin-bottom: 8px; }
.metodo-item p { font-size: 13px; color: var(--text-light); }

/* CURSOS */
.cursos-grid {
  display: grid; grid-template-columns: 350px 1fr; gap: 40px;
}
.cursos-sidebar {
  background: #fff; padding: 40px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cursos-sidebar h3 { font-size: 28px; font-weight: 800; color: var(--secondary); margin-bottom: 16px; }
.cursos-sidebar h3 span { color: var(--primary); }
.cursos-sidebar p { font-size: 14px; color: var(--text-light); margin-bottom: 32px; }
.cursos-list li {
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--text-main);
  margin-bottom: 16px;
}
.cursos-list li i { color: var(--accent); font-size: 20px; }
.help-box {
  background: #f8fafc; padding: 20px; border-radius: 8px; margin-top: 32px;
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.btn-whatsapp-red {
  display: block; width: 100%; text-align: center;
  background: var(--primary); color: #fff; font-weight: 700; padding: 16px; border-radius: 8px;
}

.curso-card {
  background: #fff; padding: 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9;
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 16px;
}
.curso-icon {
  width: 80px; height: 80px; background: #fffcf2; border: 1px solid #fde68a; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--accent);
}
.curso-info { flex: 1; }
.curso-info h4 { font-size: 20px; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.curso-info p { font-size: 13px; color: var(--text-light); }
.curso-meta {
  display: flex; flex-direction: column; gap: 8px; padding-right: 24px; border-right: 1px solid #e2e8f0;
}
.curso-meta span { font-size: 12px; font-weight: 600; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.curso-meta i { color: var(--accent); }
.curso-btn {
  background: var(--primary); color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 14px;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 24px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 18px; font-weight: 700; color: var(--secondary); cursor: pointer;
}
.faq-question i { color: var(--primary); font-size: 20px; }

/* FOOTER */
.footer-top {
  background: var(--bg-footer);
  padding: 60px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand p { font-size: 13px; color: var(--text-light); margin: 16px 0; }
.footer-features { display: flex; flex-direction: column; gap: 12px; }
.footer-features span { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--text-main); }
.footer-features i { color: var(--accent); }
.footer-title { font-size: 16px; font-weight: 800; color: var(--secondary); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--text-light); font-weight: 500; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item i { color: var(--primary); font-size: 20px; }
.contact-item div { font-size: 13px; font-weight: 700; color: var(--text-main); }
.contact-item span { display: block; font-weight: 400; color: var(--text-light); font-size: 11px; }
.btn-whatsapp-green {
  background: #25D366; color: #fff; padding: 12px 24px; border-radius: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-size: 14px;
}
.btn-whatsapp-green span { display: block; font-size: 10px; font-weight: 400; }

.footer-bottom {
  background: #0b2545;
  border-top: 4px solid var(--primary);
  padding: 24px 0;
  color: #94a3b8;
  font-size: 12px;
  display: flex; justify-content: space-between; align-items: center;
}
