/*
Theme Name: SuperPage
Theme URI: https://superpage.com.br
Author: SuperPage Agency
Author URI: https://superpage.com.br
Description: Tema WordPress exclusivo para grupos de agências de marketing digital especializados no nicho de limpeza de estofados, sofás, colchões e cortinas. Design minimalista, focado em conversão e altamente profissional.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: superpage
Tags: one-page, landing-page, marketing, conversion, clean, responsive
*/

/* ===========================================
   DESIGN TOKENS — SuperPage Design System
   =========================================== */
:root {
  /* Colors */
  --color-primary: #EAB8A0;
  /* Peach / Terracotta */
  --color-primary-dk: #D9997B;
  /* Peach dark (hover) */
  --color-secondary: #A8C4D4;
  /* Powder Blue */
  --color-secondary-dk: #88A9BF;
  /* Blue dark (hover) */
  --color-accent: #D4A5B5;
  /* Dusty Rose */
  --color-bg: #F5F0EC;
  /* Warm off-white — page background */
  --color-surface: #FFFFFF;
  /* Card / section background */
  --color-text: #3D3530;
  /* Dark warm brown */
  --color-muted: #8C7B74;
  /* Muted text */
  --color-border: #E8E0DA;
  /* Subtle borders */

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #F5F0EC 0%, #EAD4C8 50%, #C8D8E4 100%);
  --gradient-cta: linear-gradient(135deg, #EAB8A0, #D4A5B5);

  /* Neumorphic Shadows */
  --shadow-neuro: 6px 6px 16px #d9d4d0, -6px -6px 16px #ffffff;
  --shadow-neuro-inset: inset 4px 4px 10px #d9d4d0, inset -4px -4px 10px #ffffff;
  --shadow-card: 0 8px 32px rgba(61, 53, 48, 0.08);
  --shadow-hover: 0 16px 48px rgba(61, 53, 48, 0.14);

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi: 600;
  --fw-bold: 700;
  --lh-tight: 1.2;
  --lh-normal: 1.6;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   CSS RESET & BASE
   =========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ===========================================
   GLOBAL UTILITIES
   =========================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.section {
  padding-block: var(--space-3xl);
}

.section--alt {
  background-color: var(--color-surface);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dk);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  max-width: 640px;
  line-height: var(--lh-normal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-neuro);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-neuro-inset);
  transform: translateY(1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-dk);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Cards */
.card-neuro {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-neuro);
  transition: var(--transition);
}

.card-neuro:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Fade-in animation (used by JS IntersectionObserver) */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive helpers */
@media (max-width: 768px) {
  .section-title {
    font-size: var(--fs-3xl);
  }

  .container {
    padding-inline: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: var(--fs-2xl);
  }
}