/*
Theme Name: Estilo que Inspira
Theme URI: https://example.com/
Author: OpenAI
Description: Landing page em WordPress para o template Estilo que Inspira.
Version: 1.0
Text Domain: estilo-que-inspira
*/


html,
body.estilo-que-inspira-body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body.estilo-que-inspira-body .eqi-page {
  width: 100%;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 16px 140px;
  margin: 0 auto;
}

body.estilo-que-inspira-body .landing-card {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  body.estilo-que-inspira-body .eqi-page {
    padding: 20px 12px 120px;
  }
}

:root {
  --brand-cream: #f6f2eb;
  --brand-cream-soft: #fbf8f3;
  --brand-ivory: #fffdf9;

  --brand-line: #ddd3c7;
  --brand-line-soft: rgba(128, 114, 97, 0.18);

  --brand-dark: #4f4942;
  --brand-text: #625c55;
  --brand-muted: #8b8278;

  --brand-accent: #7b6f63;
  --brand-accent-strong: #5f564d;
  --brand-accent-soft: #c9bcae;

  --button-1: #7c7267;
  --button-2: #5f564d;

  --progress-bg: #e8e0d6;
  --progress-fill-1: #9d8f80;
  --progress-fill-2: #6e6358;

  --white: #ffffff;

  --shadow: 0 18px 40px rgba(79, 73, 66, 0.10);

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --pill: 999px;
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--brand-text);
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 188, 174, 0.18), transparent 20%),
    radial-gradient(circle at 85% 18%, rgba(221, 211, 199, 0.22), transparent 24%),
    linear-gradient(180deg, #f8f5ef 0%, #f2ede6 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #5f564d, #7c7267, #5f564d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 16px rgba(95, 86, 77, 0.10);
}

.eqi-page {
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 16px 140px;
}

.landing-card {
  width: 100%;
  max-width: 430px;
  position: relative;
  background: linear-gradient(180deg, var(--brand-ivory) 0%, var(--brand-cream-soft) 100%);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 22px 18px 24px;
  overflow: hidden;
}

.landing-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(123, 111, 99, 0.10);
  border-radius: 22px;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 28px 24px, rgba(123, 111, 99, 0.24) 2px, transparent 3px),
    radial-gradient(circle at 78px 42px, rgba(123, 111, 99, 0.18) 2px, transparent 3px),
    radial-gradient(circle at 132px 24px, rgba(123, 111, 99, 0.20) 2px, transparent 3px),
    radial-gradient(circle at 186px 42px, rgba(123, 111, 99, 0.18) 2px, transparent 3px),
    radial-gradient(circle at 242px 24px, rgba(123, 111, 99, 0.22) 2px, transparent 3px),
    radial-gradient(circle at 298px 42px, rgba(123, 111, 99, 0.16) 2px, transparent 3px),
    radial-gradient(circle at 354px 24px, rgba(123, 111, 99, 0.20) 2px, transparent 3px);
}

.hero,
.progress-card,
.features-title,
.features-list,
.testimonials-section,
.footer-area {
  position: relative;
  z-index: 2;
}

.hero {
  text-align: center;
  padding-top: 4px;
}

.logo-frame {
  width: 152px;
  height: 152px;
  margin: 0 auto 16px;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f5efe7);
  box-shadow: 0 12px 28px rgba(123, 111, 99, 0.10);
}

.main-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e8dfd3;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.02;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.hero h1 em {
  color: var(--brand-accent-strong);
  font-style: italic;
  font-weight: 700;
}

.subtitle {
  max-width: 320px;
  margin: 0 auto 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--brand-text);
  font-weight: 400;
}

.cta-button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--pill);
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.28);
  filter: brightness(1.03);
}

.cta-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

.microcopy {
  max-width: 330px;
  margin: 12px auto 0;
  font-size: 10.4px;
  line-height: 1.45;
  letter-spacing: 0.08px;
  font-weight: 600;
  text-align: center;
  color: var(--brand-muted);
  text-wrap: balance;
}

.progress-card {
  margin-top: 16px;
  background: var(--brand-cream-soft);
  border: 1px solid var(--brand-line-soft);
  border-radius: 18px;
  padding: 12px 12px 10px;
}

.progress-top,
.progress-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.progress-top {
  margin-bottom: 9px;
}

.progress-label {
  font-size: 12px;
  font-weight: 700;
  color: #68625b;
}

#percent-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-accent-strong);
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: var(--pill);
  overflow: hidden;
  background: var(--progress-bg);
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--progress-fill-1), var(--progress-fill-2));
  transition: width 0.35s ease;
}

.progress-bottom {
  margin-top: 8px;
  justify-content: flex-end;
}

#progress-note {
  font-size: 11px;
  font-weight: 600;
  color: #7b746b;
}

.features-title,
.testimonials-title {
  text-align: center;
  margin: 22px 0 14px;
  font-size: 23px;
  font-weight: 700;
  color: var(--brand-dark);
}

.features-list {
  display: grid;
  gap: 10px;
}

.feature-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eee7de;
  border-radius: 18px;
  padding: 12px 12px 12px 10px;
  position: relative;
  box-shadow: 0 8px 18px rgba(79, 73, 66, 0.03);
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9c8f82, #6d6359);
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4eee7;
  font-size: 15px;
}

.feature-text h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
  letter-spacing: 0.1px;
}

.feature-text p {
  font-size: 12.5px;
  line-height: 1.5;
  color: #6b655e;
  font-weight: 400;
}

.testimonials-section {
  margin-top: 18px;
}

.testimonials-scroll-wrap {
  position: relative;
  width: 100%;
}

.testimonials-viewport {
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  user-select: none;
  -webkit-user-select: none;
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
  animation: testimonialsScrollDown 45s linear infinite;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #eee7de;
  border-radius: 18px;
  padding: 16px 16px 15px;
  box-shadow: 0 8px 18px rgba(79, 73, 66, 0.03);
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #6b655e;
  font-weight: 400;
}

@keyframes testimonialsScrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

.footer-area {
  margin-top: 18px;
  padding-top: 8px;
  text-align: center;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(123, 111, 99, 0.14);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  color: #787168;
}

.footer-links a:hover {
  text-decoration: underline;
}

.made-with-love {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7c7267 0%, #5f564d 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(95, 86, 77, 0.16);
}

.social-proof-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 18px);
  width: min(92vw, 420px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(123, 111, 99, 0.18);
  box-shadow: 0 14px 30px rgba(79, 73, 66, 0.10);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
}

.social-proof-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.toast-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1ebe3;
  font-size: 14px;
}

.social-proof-toast p {
  font-size: 12px;
  line-height: 1.35;
  color: #666057;
  font-weight: 400;
}

.social-proof-toast strong {
  font-weight: 700;
  color: var(--brand-dark);
}

@media (max-width: 480px) {
  .eqi-page {
    padding: 20px 12px 120px;
  }

  .landing-card {
    max-width: 100%;
    padding: 18px 14px 20px;
    border-radius: 22px;
  }

  .landing-card::before {
    inset: 10px;
    border-radius: 16px;
  }

  .logo-frame {
    width: 138px;
    height: 138px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .subtitle {
    font-size: 13px;
  }

  .cta-button {
    font-size: 14px;
    min-height: 48px;
    padding: 13px 16px;
  }

  .microcopy {
    max-width: 285px;
    font-size: 9.8px;
    line-height: 1.42;
    letter-spacing: 0;
  }

  .feature-card {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .feature-text h3 {
    font-size: 12.5px;
  }

  .feature-text p {
    font-size: 11.8px;
  }

  .features-title,
  .testimonials-title {
    font-size: 18px;
  }

  .testimonials-viewport {
    height: 360px;
    border-radius: 18px;
  }

  .testimonials-track {
    gap: 10px;
    animation-duration: 42s;
  }

  .testimonial-card {
    padding: 14px 14px 13px;
    border-radius: 16px;
  }

  .testimonial-name {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .testimonial-card p {
    font-size: 11.8px;
  }

  .footer-links {
    gap: 8px;
    font-size: 11px;
  }

  .made-with-love {
    width: 100%;
    max-width: 270px;
    padding: 13px 20px;
    font-size: 13px;
  }

  .social-proof-toast {
    width: min(94vw, 380px);
    bottom: 12px;
    padding: 11px 12px;
  }
}