/* Jean Santos Landing — espelho visual do export Figma (theme.css + seções) */

@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --font-size: 16px;
  --font-serif: "Crimson Pro", serif;
  --font-sans: "Inter", sans-serif;

  --background: #ffffff;
  --foreground: #1e264a;
  --card: #ffffff;
  --card-foreground: #1e264a;
  --popover: #ffffff;
  --popover-foreground: #1e264a;
  --primary: #1e264a;
  --primary-foreground: #ffffff;
  --secondary: #f3cb8d;
  --secondary-foreground: #1e264a;
  --muted: #e4e4e4;
  --muted-foreground: #717182;
  --accent: #a88050;
  --accent-foreground: #ffffff;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input-background: #f3f3f5;
  --radius: 0.625rem;

  --text-2xl: 1.5rem;
  --text-xl: 1.25rem;
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
}

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

html {
  font-size: var(--font-size);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: var(--font-weight-medium);
  line-height: 1.25;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utilitários do tema Figma */
.bg-gradient-gold {
  background: linear-gradient(to right, #f3cb8d 0%, #a88050 100%);
}

.text-gradient-gold {
  background: linear-gradient(to right, #f3cb8d 0%, #a88050 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bg-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-foreground {
  color: var(--foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.bg-muted {
  background-color: var(--muted);
}

.bg-white {
  background-color: #ffffff;
}

/* Texturas e bordas (theme.css) */
.ancient-texture {
  position: relative;
  background-color: #1e264a;
}

.ancient-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1617565084799-c4c60ea9ad7a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.parchment-pattern {
  position: relative;
  background-color: #f9f3e3;
  background-image: url("https://images.unsplash.com/photo-1519972345803-7b5e39723995?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.parchment-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1706271952285-01b5e3fc2d78?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.ancient-border-top {
  position: relative;
  padding-top: 3rem;
}

.ancient-border-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 8px;
  background: linear-gradient(
    to right,
    transparent,
    #a88050 20%,
    #f3cb8d 50%,
    #a88050 80%,
    transparent
  );
  box-shadow: 0 0 25px rgba(243, 203, 141, 0.9), 0 0 50px rgba(168, 128, 80, 0.5);
}

.ancient-border-bottom {
  position: relative;
  padding-bottom: 3rem;
}

.ancient-border-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 8px;
  background: linear-gradient(
    to right,
    transparent,
    #a88050 20%,
    #f3cb8d 50%,
    #a88050 80%,
    transparent
  );
  box-shadow: 0 0 25px rgba(243, 203, 141, 0.9), 0 0 50px rgba(168, 128, 80, 0.5);
}

.ancient-divider {
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q 25 10, 50 20 T 100 20' stroke='%23a88050' stroke-width='3' fill='none' opacity='0.7'/%3E%3Cpath d='M0 20 Q 25 30, 50 20 T 100 20' stroke='%23f3cb8d' stroke-width='2' fill='none' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

/* Layout */
.landing-page {
  min-height: 100vh;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-md {
  max-width: 28rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

/* Hero */
.hero-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  display: block;
  width: 100%;
  max-width: 15rem;
  height: auto;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0;
  }

  .hero-logo {
    margin-bottom: 2rem;
  }

  .hero-logo-img {
    max-width: 17.5rem;
  }

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

.hero-title {
  font-size: 48px;
  letter-spacing: 0.025em;
  line-height: 1.05;
  margin: 0;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.625;
  opacity: 0.9;
  margin: 0;
}

.hero-form-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 28rem;
  background: #ffffff;
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 2rem;
  border: 4px solid #a88050;
  box-shadow: 0 0 30px rgba(168, 128, 80, 0.5), inset 0 0 20px rgba(243, 203, 141, 0.1);
  background-image: url("https://images.unsplash.com/photo-1706271952285-01b5e3fc2d78?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
}

.hero-card form {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.form-field {
  margin-bottom: 0.75rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
}

.form-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: calc(var(--radius) - 2px);
  font-size: var(--text-base);
}

.form-field input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

.btn-accent {
  width: 100%;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 1.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-weight: var(--font-weight-medium);
  margin-top: 1rem;
  transition: background-color 0.2s;
}

.btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent) 90%, black);
}

.btn-gradient {
  background: linear-gradient(to right, #f3cb8d 0%, #a88050 100%);
  color: var(--secondary-foreground);
  padding: 1rem 2rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
  transition: opacity 0.2s;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .space-y-md-6 > * + * {
    margin-top: 1.5rem;
  }
}

/* Pain */
.section-py {
  padding: 2rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .section-py {
    padding: 3rem 0;
  }
}

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

.pain-title {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .pain-title {
    font-size: 64px;
  }
}

.pain-lead {
  margin: 2rem 0;
  font-size: 16px;
  line-height: 1.625;
}

.pain-box {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 2rem;
  border: 4px solid #a88050;
  box-shadow: 0 0 40px rgba(168, 128, 80, 0.6), inset 0 0 30px rgba(243, 203, 141, 0.15);
  background-image: url("https://images.unsplash.com/photo-1617565084799-c4c60ea9ad7a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .pain-box {
    padding: 3rem;
  }
}

.pain-box h3 {
  margin: 0 0 1rem;
  color: #f3cb8d;
  font-size: 40px;
}

.pain-box p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.625;
  color: #e4e4e4;
}

.text-gold {
  color: #f3cb8d;
}

.italic {
  font-style: italic;
}

/* Solution */
.solution-section {
  background-color: #fff5e8;
}

.solution-title {
  text-align: center;
  margin: 0 0 3rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .solution-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .solution-title {
    font-size: 3rem;
  }
}

.cards-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-dark {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem;
  border-radius: var(--radius);
  border: 4px solid #a88050;
  box-shadow: 0 0 30px rgba(168, 128, 80, 0.5), inset 0 0 20px rgba(243, 203, 141, 0.1);
  background-image: url("https://images.unsplash.com/photo-1617565084799-c4c60ea9ad7a?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  position: relative;
  z-index: 10;
}

.card-dark p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

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

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

/* Authority */
.authority-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.authority-img {
  order: 2;
  position: relative;
}

.authority-content {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .authority-grid {
    grid-template-columns: 1fr 1fr;
  }

  .authority-img {
    order: 1;
  }

  .authority-content {
    order: 2;
  }
}

.authority-img img,
.authority-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.authority-frame {
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(to right, #f3cb8d, #a88050);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.authority-inner {
  border-radius: calc(var(--radius) - 2px);
  padding: 2rem;
  background: #c7a16a;
  max-height: 500px;
  overflow-y: auto;
}

.authority-inner h2 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

@media (min-width: 768px) {
  .authority-inner h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .authority-inner h2 {
    font-size: 3.75rem;
  }
}

.authority-inner p {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e264a;
}

@media (min-width: 768px) {
  .authority-inner p {
    font-size: 1.25rem;
  }
}

/* Social proof */
.social-section {
  background: linear-gradient(to right, #f3cb8d, #a88050);
  position: relative;
  overflow: hidden;
}

.social-texture {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("https://images.unsplash.com/photo-1519972345803-7b5e39723995?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  pointer-events: none;
}

.social-title {
  text-align: center;
  margin: 0 0 3rem;
  font-size: 1.875rem;
  color: #1e264a;
}

@media (min-width: 768px) {
  .social-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .social-title {
    font-size: 3rem;
  }
}

.video-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  position: relative;
  background-color: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s;
}

.video-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 4rem;
  height: 4rem;
  background-color: var(--accent);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  transition: transform 0.2s;
}

.video-card:hover .play-btn {
  transform: scale(1.1);
}

.play-btn svg {
  width: 2rem;
  height: 2rem;
  margin-left: 4px;
}

.video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #ffffff;
  margin: 0;
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.faq-title {
  text-align: center;
  margin: 0 0 3rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .faq-title {
    font-size: 3rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #a88050;
  box-shadow: 0 4px 15px rgba(168, 128, 80, 0.3);
  background-image: url("https://images.unsplash.com/photo-1706271952285-01b5e3fc2d78?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  text-align: left;
  background: transparent;
  font-size: 1.125rem;
  color: var(--foreground);
}

.faq-trigger:hover {
  background-color: rgba(249, 250, 251, 0.85);
}

.faq-trigger span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 0;
  }
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Botão não pode esticar em flex column (Figma: só largura do conteúdo + padding) */
.footer-inner .btn-gradient {
  align-self: center;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-tagline {
  margin: 0;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .footer-tagline {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .footer-tagline {
    font-size: 2.25rem;
  }
}

.footer-legal {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-legal p {
  margin: 0;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #f3cb8d;
}
