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

:root {
  --background: #fdfbf7;
  --surface: rgba(255, 255, 255, 0.85);
  --card: #fffefc;
  --accent: #b8670b;
  --accent-soft: #f7d794;
  --accent-strong: #c2953b;
  --text-dark: #1f1a17;
  --text-muted: #5a524b;
  --border: rgba(31, 26, 23, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(180deg, var(--background), #f5f1eb);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
}

nav a {
  color: var(--text-dark);
  margin-left: 32px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 64px);
  line-height: 1.1;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 20px;
  font-size: 20px;
  color: var(--text-muted);
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: 40px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.botao:hover {
  transform: translateY(-3px);
}

.botao.outlined {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(31, 26, 23, 0.15);
}

.hero-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 35px;
}

.hero-highlights li {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-muted);
}

section {
  padding: 10vh 10%;
  text-align: center;
}

section h2 {
  font-size: clamp(32px, 3vw, 38px);
  margin-bottom: 30px;
  color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.profile-section {
  background: var(--surface);
  padding: 70px 10%;
  border-top: 2px solid rgba(184, 134, 11, 0.3);
}

.profile-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  align-items: center;
}

.profile-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(31, 26, 23, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.profile-copy {
  text-align: left;
}

.profile-copy small {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.profile-copy h2 {
  font-size: 38px;
  margin: 12px 0;
}

.profile-copy p {
  color: var(--text-muted);
  line-height: 1.6;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  color: var(--accent);
  font-weight: 500;
}

.profile-list {
  list-style: disc;
  padding-left: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

.highlights {
  padding-bottom: 80px;
}

.feature-card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.feature-card img {
  width: 100%;
  border-radius: 14px;
  height: 180px;
  margin-bottom: 18px;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.testimonials {
  background: rgba(255, 255, 255, 0.9);
  padding: 70px 10%;
}

.testimonials p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-muted);
}

.testimonial-meta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: rgba(31, 26, 23, 0.6);
}

.contact-section {
  text-align: left;
  padding-bottom: 80px;
}

form {
  max-width: 520px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

textarea {
  resize: vertical;
}

button {
  padding: 15px;
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 30px;
  background: #f5f1eb;
  margin-top: 40px;
  color: #7a6d63;
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leaf {
  position: fixed;
  width: 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.2s linear;
}

#folhas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.folha {
  position: absolute;
  width: 60px;
  opacity: 0.4;
  transition: transform 0.2s;
}

.page-header {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.assistant-section {
  background: #fffdfa;
  padding: 80px 10%;
  border-radius: 28px;
  margin: 0 10%;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.assistant-header {
  text-align: left;
  margin-bottom: 30px;
}

.assistant-header h2 {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.assistant-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.assistant-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.assistant-field label {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.assistant-field select,
.assistant-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.assistant-result {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  min-height: 260px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistant-card {
  display: flex;
  gap: 24px;
  border-radius: 20px;
  background: var(--surface);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  align-items: flex-start;
}

.assistant-card.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.assistant-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.assistant-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.assistant-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.assistant-benefits {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  color: var(--text-muted);
  display: grid;
  gap: 4px;
}

.assistant-note {
  font-style: italic;
  color: #8c6a3c;
  margin-top: auto;
}

.assistant-placeholder {
  color: var(--text-muted);
  font-size: 16px;
}

.botao.fullwidth {
  width: 100%;
  justify-content: center;
}

.assistant-result h3 {
  color: var(--text-dark);
  margin-bottom: 6px;
}

.assistant-result ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.assistant-note {
  font-style: italic;
  color: #8c6a3c;
}

.assistant-tip {
  color: #7a5f37;
  font-weight: 500;
}

.assistant-cta {
  margin-top: auto;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-link {
  min-width: 240px;
  text-align: center;
}

@media (max-width: 768px) {
  header {
    padding: 14px 20px;
  }

  nav a {
    margin-left: 12px;
    font-size: 14px;
  }

  main {
    gap: 40px;
  }

  section {
    padding: 60px 8%;
  }

  .hero-highlights li {
    font-size: 14px;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .assistant-section {
    margin: 0;
    padding: 60px 6%;
    border-radius: 0;
  }

  .assistant-result {
    min-height: auto;
  }
}
