/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap'); */

:root {
  --primary: #0b1c2d;
  --primary-light: #162b41;
  --accent: #ff7a00;
  --accent-hover: #e66d00;
  --success: #25d366;
  --success-hover: #1ebe5b;
  --text: #1a1a1a;
  --text-muted: #555;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  line-height: 1.1;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 70px 0;
}

/* ===== HEADER ===== */
.header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--success);
  color: #fff;
}

.btn-primary:hover {
  background: var(--success-hover);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-cta {
  background: var(--accent);
  color: #fff;
}

.btn-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn.large {
  padding: 18px 40px;
  font-size: 18px;
}

/* ===== HERO ===== */
.hero {
  padding: 0;
  background: radial-gradient(circle at top right, #162b41, #0b1c2d);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 10px;
}

.hero-text {
  padding: 100px 0;
}

.badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero ul {
  list-style: none;
  margin-bottom: 40px;
}

.hero ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 17px;
}

.hero ul li span {
  color: var(--accent);
  margin-right: 12px;
  font-weight: bold;
}

.microcopy {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 16px;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* border-radius: 24px; */
  /* box-shadow: var(--shadow-lg); */
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-media img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* ===== SOCIAL PROOF ===== */
.trusted-by {
  padding: 40px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.trusted-by p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  opacity: 0.4;
  flex-wrap: wrap;
}

.logos span {
  font-weight: 800;
  font-size: 20px;
}

/* ===== FEATURES/PROBLEM SECTIONS ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.problem {
  background: var(--white);
}

.problem-grid,
.benefits-grid {
  display: grid;
  gap: 16px;
}

.problem-grid{
  grid-template-columns: repeat(3, 1fr);
}

.benefits-grid {
  grid-template-columns: repeat(2, 1fr);
}


.card {
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: block;
  color: var(--accent);
}

.card .icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.card p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ===== STEPS ===== */
.steps {
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step-counter;
}

.step-item {
  position: relative;
  text-align: center;
}

.step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

/* ===== CONTACT FORM ===== */
.contact {
  background: var(--bg-light);
}

.contact .section-header {
  margin-bottom: 40px;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.label-input {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label-input label {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  display: block;
}

.input,
.contact textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

.contact textarea {
  height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-check-label {
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

.contact .botao button {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .botao button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(11, 28, 45, 0.2);
}

/* Helper Grid for Contact Form */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.col-md-7,
.col-md-5,
.col-md-8,
.col-md-4 {
  padding: 0 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.text-center {
  text-align: center;
}

/* Form Status Utility */
#form-status {
  margin-top: 20px;
  text-align: center;
  display: none;
}

#form-status[data-active="1"] {
  display: block;
}

#form-status p {
  padding: 15px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

#form-status.ok p {
  background: rgba(37, 211, 102, 0.1);
  color: #1a7f37;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

#form-status.erro p {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.hide {
  display: none !important;
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item{
    position: relative;
    border-bottom: solid 1px #DDD;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    }
.faq-item:hover{
    background-color: #f9f9f9;
    }
.faq-item > img{
    position: absolute;
    top: 12px;
    right: 8px;
    width: 16px;
    transition: all 0.4s ease;
    }
.faq-item > h2{
    font-size: 1.1rem;
    font-family: var(--font-default);
    line-height: 120%;
    margin-bottom: 12px;
    padding-left: 8px;
    padding-right: 22px;
    border-left: solid 8px var(--accent);
    }
.faq-item[data-active='0']{
    height: 36px;
    overflow: hidden;
    }
.faq-item[data-active='1']{
    height: auto;
    }
.faq-item[data-active='0'] > h2{
    border-color: #CCC;
    }
.faq-item[data-active='0'] > img{
    transform: rotate(-180deg);
    }
.faq-item > div{
    font-size: 1rem;
    font-family: var(--font-default);
    line-height: 120%;
    margin-bottom: 12px;
    }
.faq-item > ul{
    max-width: 260px;
    margin: 0px 0px 16px 0px;
    padding: 0px;
    outline: solid 1px rgba(0, 0, 0, 0.3);
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    }
.faq-item > ul > li{
    list-style: disc;
    margin: 0px;
    padding: 8px 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    }
.faq-item > ul > li:nth-child(1){
    background-color: #999999;
    }
.faq-item > ul > li:nth-child(1) > span{
    color: #FFF;
    font-weight: bold;
    }
.faq-item > ul > li:nth-child(even){
    background-color: #F6F6F6;
    }
.faq-item > ul > li > span{
    font-size: 0.875rem;
    font-family: var(--font-default);
    line-height: 100%;
    }
.faq-item > ul > li > span:nth-child(2){
    text-align: right;
    font-weight: bold;
    }
.faq-item > p{
    font-size: 0.8rem;
    font-family: var(--font-default);
    line-height: 120%;
    color: #666;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  section {
    padding: 70px 0;
  }

  .hero {
    padding: 20px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero ul li {
    justify-content: center;
  }

  .problem-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .trusted-by .logos{
    display: block;
  }
  .trusted-by .logos > span{
    font-size: 1rem;
    padding: 8px;
    }

  .faq-item > h2{
    font-size: 0.9rem;
    }
}