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

:root {
  --bg: #FFF8F3;
  --bg-card: #FFFFFF;
  --bg-muted: #F5EDE6;
  --text: #2C1A0E;
  --text-muted: #6B4F3F;
  --accent: #C4715A;
  --accent-hover: #A85C47;
  --accent-light: #F2DDD6;
  --border: #EAD8CE;
  --success: #5A8F62;

  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1100px;
  --section-py: 80px;
  --radius: 14px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo span {
  color: var(--accent);
}

.header-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}

.header-cta:hover {
  background: var(--accent-hover);
  text-decoration: none;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 17px;
  padding: 17px 40px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
}

.section-head {
  margin-bottom: 50px;
}

.hero {
  padding: 70px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 26, 14, 0.12);
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--accent);
}

.form-field input::placeholder {
  color: #BCA89E;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
}

.form-note a {
  color: var(--text-muted);
}

.form-section {
  background: var(--bg-muted);
  padding: var(--section-py) 0;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(44, 26, 14, 0.08);
}

.form-card .section-title {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.form-card .section-subtitle {
  margin-bottom: 28px;
  font-size: 15px;
}

.form-card .lead-form {
  max-width: 100%;
}

.for-whom {
  padding: var(--section-py) 0;
  background: var(--bg-muted);
}

.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.whom-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
}

.whom-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.whom-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.whom-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.skills {
  padding: var(--section-py) 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.skills-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 26, 14, 0.10);
}

.skills-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.skills-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skills-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
}

.skills-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.skills-list .check svg {
  width: 13px;
  height: 13px;
}

.format {
  padding: var(--section-py) 0;
  background: var(--bg-muted);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.format-item .fi-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.format-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.format-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.results {
  padding: var(--section-py) 0;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.results-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 26, 14, 0.10);
}

.results-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.result-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

.result-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.result-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.doubts {
  padding: var(--section-py) 0;
  background: var(--bg-muted);
}

.doubts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.doubt-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.doubt-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.4;
}

.doubt-question .dq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.doubt-question .dq-arrow svg {
  width: 10px;
  height: 10px;
  stroke: var(--accent);
}

.doubt-item.open .doubt-question .dq-arrow {
  transform: rotate(180deg);
}

.doubt-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
}

.doubt-item.open .doubt-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.doubt-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.site-footer {
  background: #2C1A0E;
  color: rgba(255,255,255,0.65);
  padding: 40px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand .logo {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 280px;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.footer-company {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  margin-top: 8px;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C1A0E;
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 999;
  font-size: 13px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--accent-hover);
}

.cookie-btn-decline {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.2);
}

.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 8px;
}

.legal-page .updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 18px;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 32px;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.success-inner {
  max-width: 480px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
}

.success-inner h1 {
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 14px;
}

.success-inner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --section-py: 60px;
  }

  .hero-grid,
  .skills-grid,
  .results-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-img-wrap {
    order: -1;
  }

  .hero-img-wrap img {
    height: 280px;
  }

  .skills-img img,
  .results-img img {
    height: 260px;
  }

  .whom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .format-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .whom-grid {
    grid-template-columns: 1fr;
  }

  .format-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .header-cta {
    display: none;
  }

  .footer-legal {
    text-align: left;
  }

  .footer-inner {
    gap: 20px;
  }
}
