/* ==========================================================================
   Gabriela Soares – Consultoria de Imagem
   Mala Inteligente | Landing Page de Vendas & Insumos
   Design System & Premium Editorial UI (Paleta Oficial Gabriela Soares)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Nova Paleta de Cores Oficial Gabriela Soares */
  --color-vinho-profundo: #4A0D1C;  /* Cor institucional / títulos */
  --color-bordo: #7A1730;           /* Destaques / CTAs */
  --color-vermelho-cereja: #A91E3D;  /* Elementos de impacto */
  --color-rosa-queimado: #C9828E;    /* Cor secundária */
  --color-rosa-blush: #E4B8BE;       /* Fundos / áreas suaves */
  --color-creme-quente: #F6EDE5;     /* Fundo principal */
  --color-verde-salvia: #718866;     /* Contraste / elementos naturais */
  --color-marrom-ameixa: #5B3038;    /* Textos secundários */

  /* Mapeamento do Design System */
  --bg-primary: var(--color-creme-quente);
  --bg-secondary: rgba(228, 184, 190, 0.28);
  --bg-card: #FFFFFF;
  --bg-card-subtle: rgba(255, 255, 255, 0.85);
  
  --text-main: var(--color-vinho-profundo);
  --text-secondary: var(--color-marrom-ameixa);
  --text-muted: #7A5058;
  --text-light: #FFFFFF;

  --accent-nude: var(--color-rosa-queimado);
  --accent-nude-dark: var(--color-bordo);
  --accent-gold: var(--color-vermelho-cereja);
  --accent-sand: var(--color-rosa-blush);
  --accent-green: var(--color-verde-salvia);

  --border-light: rgba(122, 23, 48, 0.16);
  --border-strong: rgba(74, 13, 28, 0.4);

  --shadow-subtle: 0 10px 30px rgba(74, 13, 28, 0.05);
  --shadow-medium: 0 20px 45px rgba(74, 13, 28, 0.08);
  --shadow-hover: 0 25px 50px rgba(122, 23, 48, 0.18);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-duration: 0.6s;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Typography Elements */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2vw + 0.25rem, 1.85rem); }

p {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.08rem);
  margin-bottom: 1rem;
}

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

.container-tight {
  max-width: 780px;
  margin: 0 auto;
}

.section-padding {
  padding: clamp(3.5rem, 6vw, 6.5rem) 0;
}

.text-center { text-align: center; }

/* HEADER / NAVIGATION */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(246, 237, 229, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 1.1rem 0;
  transition: all 0.3s var(--transition-smooth);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-bordo);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-bordo), var(--color-vinho-profundo));
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(122, 23, 48, 0.22);
  transition: all 0.3s var(--transition-smooth);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(122, 23, 48, 0.32);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

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

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-bordo);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(246, 237, 229, 0.92);
  backdrop-filter: blur(10px);
  padding: 1.15rem 1.4rem;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--color-vinho-profundo);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, var(--color-bordo), var(--color-vinho-profundo));
  color: var(--text-light);
  padding: 1.15rem 2.6rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(122, 23, 48, 0.28);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(122, 23, 48, 0.38);
}

/* PROBLEM SECTION */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.problem-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.problem-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.problem-highlight {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background-color: var(--bg-secondary);
  border-left: 3px solid var(--color-bordo);
  border-radius: 12px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-vinho-profundo);
  font-style: italic;
}

/* TRANSFORMATION SECTION (BEFORE X AFTER) */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.transform-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
}

.before-card {
  border-top: 4px solid var(--color-rosa-queimado);
}

.after-card {
  border-top: 4px solid var(--color-bordo);
  box-shadow: var(--shadow-medium);
}

.transform-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.transform-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  background-color: var(--bg-secondary);
  color: var(--color-bordo);
}

.transform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transform-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.item-icon-cross {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(169, 30, 61, 0.12);
  color: var(--color-vermelho-cereja);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.item-icon-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(113, 136, 102, 0.18);
  color: var(--color-verde-salvia);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* HOW IT WORKS TIMELINE */
.timeline-stack {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  display: flex;
  gap: 1.75rem;
  background: var(--bg-card);
  padding: 1.75rem 2rem;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s var(--transition-smooth);
}

.timeline-item:hover {
  transform: translateX(6px);
  border-color: var(--color-bordo);
}

.timeline-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-bordo);
  line-height: 1;
  flex-shrink: 0;
}

/* WHAT YOU RECEIVE CARDS */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.deliverable-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s var(--transition-smooth);
}

.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-rosa-queimado);
}

.deliverable-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-rosa-blush), var(--color-rosa-queimado));
  color: var(--color-vinho-profundo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

/* MULTI-LOOK REPEAT SECTION */
.multi-look-box {
  margin-top: 3rem;
  background: var(--bg-card);
  border-radius: 24px;
  padding: 3rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-medium);
}

.multi-look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.look-card {
  background: var(--bg-primary);
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.look-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-bordo);
  margin-bottom: 0.5rem;
}

/* WHO IS IT FOR */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.for-who-card {
  background: var(--bg-card);
  padding: 1.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.for-who-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--color-bordo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* FAQ ACCORDION */
.faq-stack {
  margin-top: 3rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.4rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-vinho-profundo);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--color-bordo);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem;
}

/* FORM CONTAINER SECTION */
.form-section {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.form-wrapper-card {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-medium);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 780px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-vinho-profundo);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-bordo);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(122, 23, 48, 0.15);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  background-color: var(--color-vinho-profundo);
  color: var(--color-rosa-blush);
  font-size: 0.85rem;
}

.footer p {
  color: var(--color-rosa-blush);
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
  .hero-grid, .problem-grid, .transform-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}
