/*
Theme Name: Dica Estar
Theme URI: https://dicaestar.com.br
Author: Dica Estar
Author URI: https://dicaestar.com.br
Description: Tema personalizado para o projeto Dica Estar — Saúde, Beleza e Bem-estar para os 40+
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dicaestar
Tags: wellness, health, beauty, blog, landing-page
*/

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  /* Paleta Azul + Verde */
  --color-primary: #2D7D6F;       /* Verde-teal escuro */
  --color-primary-light: #3EA08C; /* Verde-teal médio */
  --color-primary-pale: #E8F5F2;  /* Verde-teal suave */
  --color-secondary: #1A5F7A;     /* Azul petróleo */
  --color-secondary-light: #2980B9;
  --color-accent: #F0C040;        /* Dourado quente */
  --color-accent-dark: #C9973A;
  --color-dark: #1C2B2A;
  --color-text: #2E3D3C;
  --color-text-muted: #6B8A86;
  --color-text-light: #A8C4BF;
  --color-bg: #FAFCFC;
  --color-bg-alt: #F2F8F6;
  --color-white: #FFFFFF;
  --color-border: #D4E8E3;

  /* Tipografia */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Nunito', 'Helvetica Neue', sans-serif;
  --font-mono: 'Courier New', monospace;

  /* Espaçamentos */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Raios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(45, 125, 111, 0.10);
  --shadow-md: 0 8px 32px rgba(45, 125, 111, 0.15);
  --shadow-lg: 0 20px 60px rgba(45, 125, 111, 0.20);

  /* Transições */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 780px;
}

/* =============================================
   RESET E BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

/* =============================================
   TIPOGRAFIA
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--color-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--space-sm); }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

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

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-2xl) 0;
}

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

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* =============================================
   BOTÕES
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(45, 125, 111, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 125, 111, 0.45);
  color: var(--color-white);
}

.btn--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(240, 192, 64, 0.35);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 192, 64, 0.5);
  color: var(--color-dark);
}

.btn--outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

/* =============================================
   HEADER / NAVEGAÇÃO
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 252, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo span {
  color: var(--color-accent-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.site-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a:hover {
  width: 100%;
  color: var(--color-primary);
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-full);
}

.nav-cta:hover {
  opacity: 0.9;
  color: var(--color-white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__logo span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--color-text-light);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* =============================================
   HERO
============================================= */
.hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1A3A38 50%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(62, 160, 140, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(240, 192, 64, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 192, 64, 0.15);
  border: 1px solid rgba(240, 192, 64, 0.4);
  color: var(--color-accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.hero__title em {
  color: var(--color-accent);
  font-style: normal;
}

.hero__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  margin-right: -10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: white;
  font-weight: 700;
}

/* Card visual do hero */
.hero__visual {
  position: relative;
}

.hero__card-main {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.hero__pillars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.hero__pillar-icon {
  font-size: 1.5rem;
}

.hero__pillar-text strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}

.hero__pillar-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

/* Badge flutuante */
.hero__floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
}

.hero__floating-badge span {
  font-size: 1.8rem;
  display: block;
}

/* =============================================
   BENEFÍCIOS / FEATURES
============================================= */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: var(--color-primary-pale);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* =============================================
   SOBRE / ABOUT
============================================= */
.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.about__stat {
  background: var(--color-primary-pale);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.about__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about__stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.about__image-wrap {
  position: relative;
}

.about__image-placeholder {
  background: linear-gradient(135deg, var(--color-primary-pale), var(--color-bg-alt));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 2px solid var(--color-border);
}

.about__decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

/* =============================================
   CAPTURA / LEAD MAGNET
============================================= */
.capture {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.capture::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.capture__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.capture__title {
  color: white;
  margin-bottom: var(--space-sm);
}

.capture__subtitle {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

.capture__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.capture__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.capture__checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Formulário de captura */
.capture-form {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.capture-form__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.capture-form__subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* =============================================
   TESTEMUNHOS
============================================= */
.testimonial {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary-pale);
}

.testimonial__text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 0.9rem;
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonial__stars {
  color: var(--color-accent-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* =============================================
   BLOG / POSTS
============================================= */
.post-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-primary-pale), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

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

.post-card__category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
  line-height: 1.35;
}

.post-card__title a {
  color: inherit;
}

.post-card__title a:hover {
  color: var(--color-primary);
}

.post-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.post-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* =============================================
   PRODUTO / PREÇO
============================================= */
.price-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  text-align: center;
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.price-card--featured {
  border-color: var(--color-primary);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-dark);
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.price-card__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
}

.price-card__price {
  margin-bottom: var(--space-md);
}

.price-card__currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-muted);
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.price-card__period {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.price-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.price-card__features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVO
============================================= */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid > *:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem var(--space-lg) var(--space-lg);
    box-shadow: var(--shadow-lg);
    gap: var(--space-sm);
    z-index: 9999;
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    z-index: 10000;
    position: relative;
  }

  .hero__grid,
  .about__content,
  .capture__grid {
    grid-template-columns: 1fr;
  }

  .hero__floating-badge {
    bottom: -10px;
    right: 10px;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* =============================================
   ANIMAÇÕES
============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.animate-fadeInUp {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* =============================================
   UTILITÁRIOS
============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mb-0 { margin-bottom: 0 !important; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.text-primary { color: var(--color-primary); }
.text-accent  { color: var(--color-accent-dark); }
.text-muted   { color: var(--color-text-muted); }

/* Highlight inline */
.highlight {
  background: linear-gradient(135deg, rgba(45, 125, 111, 0.15), rgba(26, 95, 122, 0.10));
  border-radius: 4px;
  padding: 0 4px;
  color: var(--color-primary);
  font-weight: 700;
}

/* Divisor decorativo */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
  margin: var(--space-sm) 0;
}

.divider--center { margin: var(--space-sm) auto; }
