/* ============================================
   AGÊNCIA ASBE — Landing Page
   Design: "Rose Gold Brutalist Elegance"
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--coffee);
  background-color: var(--pearl);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Design Tokens --- */
:root {
  --rose-gold: #F2C1B0;
  --peach: #E8A593;
  --plum: #3D2B2B;
  --coffee: #2A1E1E;
  --nude: #D9B4A7;
  --pearl: #F9F4F2;
  --whatsapp: #25D366;
  --whatsapp-hover: #20BA56;

  --gradient-dark: linear-gradient(160deg, #3D2B2B 0%, #2A1E1E 100%);
  --gradient-rose: linear-gradient(135deg, #3D2B2B 0%, #E8A593 100%);
  --gradient-cta: linear-gradient(135deg, #F2C1B0 0%, #E8A593 100%);

  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --fs-hero: clamp(1.8rem, 4vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  --radius-sharp: 2px;
  --radius-cta: 40px;
  --radius-card: 2px;

  --shadow-card: 0 4px 24px rgba(42, 30, 30, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(42, 30, 30, 0.15);
  --shadow-cta: 0 6px 30px rgba(242, 193, 176, 0.4);

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.section-title--light {
  color: var(--pearl);
}

.section-title--dark {
  color: var(--coffee);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--fs-body);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--radius-cta);
  cursor: pointer;
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
  text-align: center;
  line-height: 1.3;
}

.btn--primary {
  background: var(--gradient-cta);
  color: var(--coffee);
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(242, 193, 176, 0.55);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  color: white;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.btn--whatsapp svg {
  fill: currentColor;
}

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

.btn--outline:hover {
  background: var(--rose-gold);
  color: var(--coffee);
  transform: translateY(-2px);
}

/* CTA pulse animation */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: var(--shadow-cta);
  }

  50% {
    box-shadow: 0 6px 40px rgba(242, 193, 176, 0.6);
  }
}

.btn--pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn--pulse:hover {
  animation: none;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn--pulse {
    animation: none;
  }
}

/* ============================================
   1. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: var(--space-lg) 0 var(--space-md);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--pearl));
  z-index: 3;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero_background.png') center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
}

.hero__tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.15;
  color: var(--pearl);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__highlight {
  color: var(--rose-gold);
  display: inline;
}

.hero__subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--rose-gold);
  font-weight: 600;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
  letter-spacing: 0.5px;
}

.hero__video-label {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  color: var(--nude);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero__video {
  width: 100%;
  max-width: 720px;
  margin: 0 auto var(--space-md);
  aspect-ratio: 16 / 9;
  background: rgba(42, 30, 30, 0.6);
  border: 1px solid rgba(242, 193, 176, 0.15);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--nude);
  font-size: var(--fs-small);
}

.video-placeholder__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--coffee);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
  cursor: pointer;
}

.video-placeholder__play:hover {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(242, 193, 176, 0.5);
}

.hero__actions {
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero__actions .btn {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  padding: 1.1rem 2.8rem;
}

.hero__actions-sub {
  margin-top: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--coffee);
  font-weight: 600;
  letter-spacing: 0.3px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   2. BENEFITS STRIP
   ============================================ */
.benefits {
  background: var(--pearl);
  padding: var(--space-xl) 0;
}

.benefits__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.benefit-card {
  background: white;
  border: 1px solid rgba(217, 180, 167, 0.3);
  border-radius: var(--radius-card);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  text-align: center;
  transition: transform var(--transition-spring), box-shadow var(--transition-base), border-color var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--peach);
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  background: rgba(242, 193, 176, 0.1);
  border-radius: 50%;
  transition: background var(--transition-base), transform var(--transition-spring);
}

.benefit-card:hover .benefit-card__icon {
  background: rgba(242, 193, 176, 0.2);
  transform: scale(1.08);
}

.benefit-card__icon svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.benefit-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--plum);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.benefit-card__text {
  font-size: var(--fs-small);
  color: var(--plum);
  opacity: 0.7;
  line-height: 1.6;
}

/* ============================================
   3. PAIN POINTS
   ============================================ */
.pain {
  background: var(--gradient-dark);
  padding: var(--space-2xl) 0;
  position: relative;
}

.pain .container {
  max-width: 900px;
}

.pain__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.pain__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(242, 193, 176, 0.06);
  border-left: 3px solid var(--rose-gold);
  border-radius: var(--radius-sharp);
  transition: background var(--transition-base);
}

.pain__item:hover {
  background: rgba(242, 193, 176, 0.12);
}

.pain__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(242, 193, 176, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--rose-gold);
  margin-top: 2px;
}

.pain__text {
  color: var(--pearl);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.pain__urgency {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.pain__urgency p {
  color: var(--nude);
  font-size: var(--fs-body);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.pain__urgency strong {
  color: var(--rose-gold);
}

.pain__urgency-highlight {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--pearl) !important;
  font-weight: 600;
  line-height: 1.5 !important;
  margin-top: var(--space-md) !important;
}

/* ============================================
   4. METHOD — "CLIENTE TODA HORA"
   ============================================ */
.method {
  background: var(--pearl);
  padding: var(--space-2xl) 0;
}

.method__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.method__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* --- Timeline Layout --- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-md) 0 var(--space-md) 80px;
}

.timeline__line {
  position: absolute;
  left: 54px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--nude) 10%, var(--rose-gold) 50%, var(--nude) 90%, transparent);
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Node — sits on the left line */
.timeline__node {
  position: absolute;
  left: -56px;
  top: var(--space-md);
  z-index: 2;
}

.timeline__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--coffee);
  box-shadow: 0 0 0 6px var(--pearl), 0 0 20px rgba(242, 193, 176, 0.3);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.timeline__item:hover .timeline__number {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px var(--pearl), 0 0 30px rgba(242, 193, 176, 0.5);
}

/* Card — full width */
.timeline__card {
  flex: 1;
  background: white;
  border: 1px solid rgba(217, 180, 167, 0.25);
  border-radius: var(--radius-card);
  padding: var(--space-lg) var(--space-xl);
  position: relative;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.timeline__card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--peach);
}

/* Card connector arrow pointing left to the timeline */
.timeline__card::after {
  content: '';
  position: absolute;
  left: -8px;
  top: calc(var(--space-md) + 12px);
  width: 14px;
  height: 14px;
  background: white;
  border-left: 1px solid rgba(217, 180, 167, 0.25);
  border-top: 1px solid rgba(217, 180, 167, 0.25);
  transform: rotate(-45deg);
}

/* Remove old alternating selectors — no longer needed */
.timeline__item.reveal-left .timeline__card,
.timeline__item.reveal-right .timeline__card {
  text-align: left;
}

.timeline__item.reveal-left .step__features {
  justify-content: flex-start;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.step__number {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--nude);
  opacity: 0.4;
  line-height: 1;
  text-align: center;
  position: relative;
}

.step__content {
  background: white;
  border: 1px solid rgba(217, 180, 167, 0.25);
  border-radius: var(--radius-card);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  transition: box-shadow var(--transition-base);
}

.step__content:hover {
  box-shadow: var(--shadow-card-hover);
}

.step__tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: var(--space-xs);
}

.step__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--plum);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.step__desc {
  font-size: var(--fs-body);
  color: var(--plum);
  opacity: 0.8;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.step__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
}

.step__feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--plum);
  padding: 6px 14px;
  background: rgba(242, 193, 176, 0.12);
  border-radius: var(--radius-cta);
}

.step__feature::before {
  content: '✓';
  color: var(--peach);
  font-weight: 700;
  font-size: 0.8rem;
}

.step__insight {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(61, 43, 43, 0.04);
  border-left: 3px solid var(--rose-gold);
  border-radius: var(--radius-sharp);
  font-size: var(--fs-small);
  color: var(--plum);
  font-style: italic;
  line-height: 1.7;
  text-align: left;
}

/* ============================================
   5.5 ABOUT — QUEM ESTÁ POR TRÁS
   ============================================ */
.about {
  background: var(--pearl);
  padding: var(--space-2xl) 0;
  overflow: hidden;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Left column */
.about__left {
  padding-right: var(--space-md);
  margin-top: var(--space-xl);
}

.about__headline {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--coffee);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.about__body {
  font-size: var(--fs-body);
  color: var(--plum);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* Founders */
.about__founders {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.about__founders-diamond {
  flex-shrink: 0;
  margin-top: 4px;
}

.about__founders-names {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--coffee);
  margin-bottom: 6px;
}

.about__founders-desc {
  color: var(--plum);
  font-size: var(--fs-small);
  line-height: 1.7;
  opacity: 0.75;
}

.about__founders-desc strong {
  color: var(--coffee);
  opacity: 1;
}

/* Right column — Dark card */
.about__right {
  display: flex;
  height: 100%;
}

.about__card {
  background: var(--gradient-dark);
  border-radius: 16px 0 0 16px;
  padding: var(--space-2xl) var(--space-xl);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Pseudo-element to paint the background to the edge of the screen */
.about__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 50vw;
  height: 100%;
  background: var(--gradient-dark);
}

.about__card-title {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: var(--space-lg);
}

.about__card-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about__card-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.about__card-diamond {
  flex-shrink: 0;
  margin-top: 4px;
}

.about__card-item p {
  color: var(--nude);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.about__card-item strong {
  color: var(--pearl);
}

.results {
  background: var(--gradient-dark);
  padding: var(--space-2xl) 0;
  position: relative;
}

.results__header {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.results__subtitle {
  text-align: center;
  color: var(--nude);
  font-size: var(--fs-body);
  margin-bottom: var(--space-xl);
  opacity: 0.8;
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.result-card {
  background: rgba(242, 193, 176, 0.06);
  border: 1px solid rgba(242, 193, 176, 0.1);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  transition: transform var(--transition-spring), border-color var(--transition-base);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 193, 176, 0.3);
}

.result-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-sm);
  background: rgba(242, 193, 176, 0.08);
  border-radius: 50%;
}

.result-card__icon svg {
  width: 36px;
  height: 36px;
}

.result-card__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--pearl);
  margin-bottom: var(--space-xs);
}

.result-card__text {
  font-size: var(--fs-small);
  color: var(--nude);
  line-height: 1.6;
}

/* Bottom row — 2 cards centered */
.results__grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: var(--space-md) auto 0;
}

/* ============================================
   6. FAQ
   ============================================ */
.faq {
  background: var(--pearl);
  padding: var(--space-2xl) 0;
}

.faq .container {
  max-width: 800px;
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq__item {
  border: 1px solid rgba(217, 180, 167, 0.3);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq__item:hover {
  border-color: var(--peach);
}

.faq__item.active {
  border-color: var(--rose-gold);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: white;
  cursor: pointer;
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--plum);
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--transition-base);
}

.faq__question:hover {
  background: rgba(242, 193, 176, 0.06);
}

.faq__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(242, 193, 176, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-spring), background var(--transition-base);
  font-size: 0.8rem;
  color: var(--plum);
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
  background: var(--rose-gold);
  color: var(--coffee);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  font-size: var(--fs-body);
  color: var(--plum);
  opacity: 0.8;
  line-height: 1.8;
}

/* ============================================
   7. FINAL CTA
   ============================================ */
.cta-final {
  background: var(--gradient-rose);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__content {
  position: relative;
  z-index: 2;
}

.cta-final .section-title {
  max-width: 700px;
  margin: 0 auto var(--space-sm);
}

.cta-final__sub {
  color: var(--pearl);
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
  opacity: 0.85;
}

.cta-final .btn {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  padding: 1.2rem 3rem;
}

/* ============================================
   8. FOOTER
   ============================================ */
.footer {
  background: var(--coffee);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer__text {
  color: var(--nude);
  font-size: var(--fs-small);
  opacity: 0.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__grid-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-lg) 0 var(--space-md);
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .benefit-card {
    padding: var(--space-md);
  }

  .benefit-card__icon {
    width: 60px;
    height: 60px;
  }

  .benefit-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .benefit-card__title {
    font-size: 1.1rem;
  }

  /* Timeline responsive */
  .timeline {
    padding-left: 40px;
    padding-right: 0;
  }

  .timeline__line {
    left: 22px;
  }

  .timeline__node {
    left: -48px;
    top: var(--space-sm);
  }

  .timeline__number {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }

  .timeline__card {
    padding: var(--space-md);
  }

  .timeline__card::after {
    display: none;
  }

  .step {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .step__number {
    font-size: 2.5rem;
    text-align: left;
    padding-left: var(--space-sm);
  }


  /* About responsive */
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about__left {
    padding-right: 0;
  }

  .about__card {
    padding: var(--space-md);
  }

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

  .results__grid-bottom {
    grid-template-columns: 1fr;
  }

  .faq__question {
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
  }

  .pain__item {
    padding: var(--space-sm);
  }

  /* Prevent horizontal animations from breaking mobile layout */
  .reveal-left,
  .reveal-right {
    transform: translateY(30px);
    /* Fallback to vertical animation */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    gap: 0.4rem;
  }

  .btn--pulse {
    animation: none;
    /* Disable pulse on small mobile to avoid shadow overflow */
  }

  .step__features {
    flex-direction: column;
  }

  .cta-final .btn {
    width: 100%;
  }

  /* Specific fix for Quem Somos section padding */
  .quem {
    padding: 60px var(--space-md) !important;
  }
}