/*
Theme Name: DOLS WATCHES
Theme URI: https://dolswatches.com.br
Author: BRAINS Marketing
Author URI: https://www.brainsmarketing.com.br
Description: Tema institucional da DOLS WATCHES. Comunidade privada de alta relojoaria. Landing page de luxo com foco em conversao e SEO. Migrado do Hostinger Horizons.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dols-watches
Tags: luxo, relojoaria, landing-page, full-width, custom-colors
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --background: 0 0% 4%;
  --foreground: 0 0% 98%;
  --card: 0 0% 7%;
  --card-foreground: 0 0% 98%;
  --primary: 222 47% 11%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 0 0% 98%;
  --accent: 43 74% 49%;
  --accent-foreground: 0 0% 9%;
  --highlight: 142 71% 45%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 65%;
  --destructive: 0 84% 60%;
  --border: 0 0% 15%;
  --input: 0 0% 12%;
  --ring: 43 74% 49%;
  --radius: 0.25rem;

  --bg: hsl(var(--background));
  --fg: hsl(var(--foreground));
  --card-bg: hsl(var(--card));
  --accent-c: hsl(var(--accent));
  --accent-fg: hsl(var(--accent-foreground));
  --primary-c: hsl(var(--primary));
  --muted-fg: hsl(var(--muted-foreground));
  --border-c: hsl(var(--border));
  --input-c: hsl(var(--input));
  --highlight-c: hsl(var(--highlight));
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;

  --font-serif: "Cormorant Garamond", "Cinzel", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Inter", sans-serif;

  --shadow-premium: 0 20px 40px -10px rgba(0,0,0,.5), 0 10px 20px -5px rgba(0,0,0,.3);
  --shadow-glow: 0 0 40px -10px hsl(var(--accent) / .3);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.4), 0 4px 6px -4px rgba(0,0,0,.3);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 400; margin: 0; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.uppercase-title { text-transform: uppercase; letter-spacing: 0.1em; }
.section { padding: 6rem 0; }
.text-accent { color: var(--accent-c); }
.text-muted { color: var(--muted-fg); }

/* Scroll reveal animation (replaces framer-motion fadeInUp) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   FIXED LOGO
   ============================================================ */
.site-logo {
  position: fixed;
  top: 1.5rem; left: 1.5rem;
  z-index: 50;
}
@media (min-width: 768px) { .site-logo { top: 2rem; left: 2rem; } }
.site-logo a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,.6);
  display: inline-block;
  transition: transform .3s ease;
}
@media (min-width: 768px) { .site-logo a { font-size: 1.875rem; } }
.site-logo a:hover { transform: scale(1.05); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  transition: all .3s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-4px); }
.btn:active { transform: scale(.98); }
.btn-accent { background: var(--accent-c); color: var(--accent-fg); padding: .75rem 1.5rem; font-size: .95rem; box-shadow: var(--shadow-glow); }
.btn-accent:hover { background: hsl(var(--accent) / .9); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; padding: .75rem 1.5rem; font-size: .95rem; box-shadow: var(--shadow-premium); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-primary {
  background: var(--primary-c); color: var(--fg);
  width: 100%; padding: 1.1rem 1.5rem; font-size: 1.125rem;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 400;
}
.btn-primary:hover { background: hsl(var(--primary) / .9); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.icon-wa { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
  background: #000;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-top: 3rem;
}
@media (min-width: 1024px) { .hero-content { padding-top: 0; } }

.brand-logos-wrap { width: 100%; margin-bottom: 2.5rem; }
.brand-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: 1.5rem 0;
}
@media (min-width: 640px) { .brand-logos { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; padding: 2rem 0; } }
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  transition: transform .3s ease;
}
@media (min-width: 768px) { .brand-logo { height: 80px; } }
@media (min-width: 1024px) { .brand-logo { height: 100px; } }
.brand-logo.is-omega { height: 90px; }
@media (min-width: 768px) { .brand-logo.is-omega { height: 120px; } }
@media (min-width: 1024px) { .brand-logo.is-omega { height: 150px; } }
.brand-logo:hover { transform: scale(1.15); }
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .8;
  transition: opacity .3s ease;
}
.brand-logo img:hover { opacity: 1; }
.brand-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
@media (min-width: 1024px) { .brand-divider { justify-content: flex-start; } }
.brand-divider span {
  width: 8rem; height: 1px;
  background: linear-gradient(to right, hsl(var(--accent) / 0), hsl(var(--accent) / .5), hsl(var(--accent) / 0));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .25rem .75rem;
  border: 1px solid hsl(var(--accent) / .3);
  background: hsl(var(--accent) / .05);
  border-radius: 9999px;
}
.eyebrow span {
  color: var(--accent-c);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0,0,0,.4);
}
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-sub {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  font-weight: 300;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.25rem; } }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; width: auto; } }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .hero-image-wrap { justify-content: flex-end; margin-top: 0; } }
.hero-image-inner { position: relative; width: 100%; max-width: 28rem; }
@media (min-width: 1024px) { .hero-image-inner { max-width: 32rem; } }
@media (min-width: 1280px) { .hero-image-inner { max-width: 36rem; } }
.hero-image-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 75%; height: 75%;
  background: hsl(var(--accent) / .1);
  filter: blur(100px);
  border-radius: 9999px;
  pointer-events: none;
}
.hero-image {
  position: relative;
  z-index: 10;
  width: 100%;
  filter: drop-shadow(0 35px 35px rgba(0,0,0,.6));
  transition: transform .7s ease-out;
}
.hero-image:hover { transform: scale(1.05); }

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.bg-card-50 { background: hsl(var(--card) / .5); border-top: 1px solid hsl(var(--border) / .5); border-bottom: 1px solid hsl(var(--border) / .5); }
.section-head { text-align: center; max-width: 56rem; margin: 0 auto 4rem; }
.section-head.tight { margin-bottom: 0; }
.h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .h2 { font-size: 2.25rem; } }
.h2-lg { font-size: 1.875rem; }
@media (min-width: 768px) { .h2-lg { font-size: 3rem; } }
.lead { font-size: 1rem; color: var(--muted-fg); line-height: 1.7; }
@media (min-width: 768px) { .lead { font-size: 1.125rem; } }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.text-center { text-align: center; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* How it works cards */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 5rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-c);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-lg);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.step-card:hover { border-color: hsl(var(--accent) / .5); box-shadow: var(--shadow-premium); }
.step-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 9999px;
  background: hsl(var(--accent) / .1);
  margin-bottom: 1.5rem;
}
.step-icon svg { width: 2.5rem; height: 2.5rem; color: var(--accent-c); stroke-width: 1.5; }
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.step-card p { font-size: .875rem; color: var(--muted-fg); line-height: 1.7; margin: 0; }

/* YouTube embed */
.video-wrap { max-width: 24rem; margin: 3rem auto 0; }
.video-head { text-align: center; margin-bottom: 2rem; }
.video-head h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
@media (min-width: 768px) { .video-head h3 { font-size: 1.5rem; } }
.video-head p { color: var(--muted-fg); font-size: .95rem; margin: 0; }
.video-frame {
  position: relative;
  width: 100%;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-c);
  background: #000;
  aspect-ratio: 9 / 16;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Serial Check */
.serial-section { background: #050505; border-top: 1px solid hsl(var(--border) / .5); border-bottom: 1px solid hsl(var(--border) / .5); position: relative; overflow: hidden; }
.serial-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, hsl(var(--accent) / .05)); pointer-events: none; }
.serial-badge {
  width: 5rem; height: 5rem;
  border-radius: 9999px;
  border: 2px solid var(--accent-c);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  box-shadow: var(--shadow-glow);
  margin: 0 auto 2rem;
}
.serial-badge span { font-family: var(--font-serif); font-size: 1.875rem; color: var(--accent-c); letter-spacing: -0.05em; }
.serial-card {
  background: hsl(var(--card) / .8);
  border: 1px solid var(--border-c);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
}
@media (min-width: 768px) { .serial-card { padding: 2.5rem; } }
.serial-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.serial-list li { display: flex; align-items: flex-start; }
.serial-list svg { width: 1.5rem; height: 1.5rem; color: var(--highlight-c); margin-right: 1rem; margin-top: .25rem; flex-shrink: 0; }
.serial-list span { font-size: 1rem; font-weight: 500; }
@media (min-width: 768px) { .serial-list span { font-size: 1.125rem; } }

/* Excellence */
.excellence { position: relative; overflow: hidden; padding: 8rem 0; }
.excellence::before { content: ""; position: absolute; inset: 0; background: hsl(var(--primary) / .05); z-index: 0; }
.excellence .container { position: relative; z-index: 1; }

/* Credibility */
.cred-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: center; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .cred-grid { grid-template-columns: repeat(2, 1fr); } }
.cred-item { padding: 2rem; }
.cred-item svg { width: 3rem; height: 3rem; color: var(--accent-c); margin: 0 auto 1.5rem; stroke-width: 1.5; }
.cred-item h3 { font-family: var(--font-serif); font-size: 1.125rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.cred-item p { font-size: .875rem; color: var(--muted-fg); margin: 0; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap { width: 100%; max-width: 42rem; margin: 0 auto; }
.form-intro { margin-bottom: 2rem; text-align: center; }
.form-intro p { color: var(--muted-fg); font-size: .95rem; line-height: 1.7; margin: 0; }
.access-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: .75rem;
  border: 1px solid var(--border-c);
  box-shadow: var(--shadow-lg);
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .875rem; color: var(--fg); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--input-c);
  color: var(--fg);
  border: 1px solid var(--border-c);
  border-radius: var(--radius);
  padding: .65rem .85rem;
  font-size: .875rem;
  font-family: var(--font-sans);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: hsl(var(--muted-foreground) / .7); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary-c);
  box-shadow: 0 0 0 2px hsl(var(--ring) / .4);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a6a6a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.5rem; }
.form-note { margin-top: 1.5rem; text-align: center; }
.form-note p { font-size: .75rem; color: var(--muted-fg); margin: 0; }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: #000;
}
.success-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 75%; height: 75%; background: hsl(var(--accent) / .05); filter: blur(120px); border-radius: 9999px; pointer-events: none; }
.success-card {
  max-width: 42rem; margin: 0 auto; text-align: center;
  background: hsl(var(--card) / .8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-c);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
}
@media (min-width: 768px) { .success-card { padding: 4rem; } }
.success-icon { width: 5rem; height: 5rem; border-radius: 9999px; background: hsl(var(--accent) / .1); border: 1px solid hsl(var(--accent) / .2); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow); margin: 0 auto 2rem; }
.success-icon svg { width: 2.5rem; height: 2.5rem; color: var(--accent-c); stroke-width: 1.5; }
.success-card h1 { font-family: var(--font-serif); font-size: 1.875rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .success-card h1 { font-size: 3rem; } }
.success-card p { font-size: 1rem; color: var(--muted-fg); margin-bottom: 2.5rem; font-weight: 300; line-height: 1.7; }
@media (min-width: 768px) { .success-card p { font-size: 1.125rem; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--card-bg); border-top: 1px solid var(--border-c); padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-brand h3 { font-family: var(--font-serif); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--muted-fg); font-size: .875rem; line-height: 1.7; max-width: 28rem; margin: 0; }
.footer-contact h4 { font-family: var(--font-serif); font-size: 1.125rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.footer-contact .links { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact a { display: flex; align-items: center; color: var(--muted-fg); font-size: .875rem; transition: color .2s ease; }
.footer-contact a:hover { color: var(--fg); }
.footer-contact a svg { width: 1.25rem; height: 1.25rem; margin-right: .75rem; }
.footer-bottom { border-top: 1px solid var(--border-c); padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom .copy { color: var(--muted-fg); font-size: .75rem; margin: 0; }
.footer-credit { display: flex; align-items: center; gap: .75rem; font-size: .75rem; color: var(--muted-fg); }
.footer-credit img { height: 1.25rem; width: auto; object-fit: contain; opacity: .8; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; }
.wa-float .tooltip {
  position: absolute; bottom: 100%; right: 0; margin-bottom: .75rem;
  background: var(--card-bg); color: var(--fg);
  font-size: .875rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: .5rem;
  box-shadow: var(--shadow-premium); border: 1px solid var(--border-c);
  opacity: 0; transform: translateY(.5rem); transition: all .3s ease;
  pointer-events: none; white-space: nowrap;
}
.wa-float:hover .tooltip { opacity: 1; transform: translateY(0); }
.wa-float .tooltip::after { content: ""; position: absolute; bottom: -.4rem; right: 1.5rem; width: .75rem; height: .75rem; background: var(--card-bg); border-bottom: 1px solid var(--border-c); border-right: 1px solid var(--border-c); transform: rotate(45deg); }
.wa-float a {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: var(--whatsapp); color: #fff;
  border-radius: 9999px; box-shadow: 0 12px 30px rgba(0,0,0,.4);
  animation: wa-pulse 2s infinite;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease;
}
.wa-float a:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 25px -5px rgba(37,211,102,.4); }
.wa-float a:active { transform: scale(.98); }
.wa-float a svg { width: 2.25rem; height: 2.25rem; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float a { animation: none; } }
