/* ========================================
   HOSPPED - Estilo Jade Imperial
   Versão Enterprise - Profissional, sem emojis
   ======================================== */

/* ===== VARIÁVEIS ===== */
:root {
  --jade-deep: #2A5D5E;
  --jade-light: #3A7A7B;
  --jade-lighter: #4A9A9B;
  --gold-soft: #D4AF37;
  --gold-hover: #B8972B;
  --gold-light: #E8C565;
  --cloud-dancer: #F0F0E9;
  --charcoal: #333333;
  --charcoal-light: #4A4A4A;
  --gray-medium: #666666;
  --gray-light: #999999;
  --gray-lighter: #E5E5E5;
  --gray-bg: #F8F9FA;
  --white: #FFFFFF;
  
  --error: #C41E3A;
  --error-light: #F8D7DA;
  --success: #2E7D32;
  --success-light: #D4EDDA;
  --warning: #856404;
  --warning-light: #FFF3CD;
  --info: #0C5460;
  --info-light: #D1ECF1;
  
  --shadow-sm: 0 2px 8px rgba(42, 93, 94, 0.1);
  --shadow: 0 4px 12px rgba(42, 93, 94, 0.15);
  --shadow-md: 0 8px 25px rgba(42, 93, 94, 0.2);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --input-border: #CCCCCC;
  --input-focus: rgba(42, 93, 94, 0.1);
  
  --font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 72px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

/* ===== RESET E BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--jade-deep);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold-soft);
}

ul {
  list-style: none;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-medium);
}

.lead {
  font-size: 1.25rem;
  color: var(--charcoal-light);
  font-weight: 300;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* ===== CONTAINER E SEÇÕES ===== */
.container,
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--spacing-lg) 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--jade-deep);
  margin-bottom: 1rem;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-soft);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jade-deep);
  letter-spacing: -0.5px;
}

.logo-text .pp-highlight {
  color: var(--gold-soft);
  font-weight: 800;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--gray-medium);
  margin-left: 0.25rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

nav a:hover,
nav a.active {
  color: var(--jade-deep);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-soft);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--jade-deep);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* ===== HERO ===== */
.hero-home {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  color: var(--white);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 93, 94, 0.95) 0%, rgba(42, 93, 94, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold-soft);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-soft);
  color: var(--gold-soft);
}

.btn-outline:hover {
  background: var(--gold-soft);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--jade-deep);
}

.btn-secondary {
  background: var(--jade-deep);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--jade-light);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn:disabled {
  background: var(--gray-light);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--white);
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--gray-lighter);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--jade-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--gray-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--gold-soft);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--jade-deep);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  color: var(--jade-deep);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.service-features {
  margin: 1rem 0;
}

.service-features li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--gold-soft);
  border-radius: 50%;
}

/* ===== DIFFERENTIALS SECTION ===== */
.differentials-section {
  background: var(--white);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.differential-card {
  text-align: center;
  padding: 2rem;
}

.differential-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.differential-card h3 {
  color: var(--jade-deep);
  margin-bottom: 0.75rem;
}

.differential-card p {
  color: var(--gray-medium);
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
  background: var(--gray-bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gold-soft);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  color: var(--jade-deep);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--gray-medium);
}

/* ===== SEGMENTS SECTION ===== */
.segments-section {
  background: var(--white);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.segment-card {
  background: var(--gray-bg);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.segment-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
}

.segment-card h3 {
  color: var(--jade-deep);
  margin-bottom: 0.75rem;
}

.segment-card p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.link-arrow {
  color: var(--jade-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.link-arrow:hover {
  color: var(--gold-soft);
  gap: 0.5rem;
}

/* ===== TECHNOLOGY SECTION ===== */
.technology-section {
  background: var(--gray-bg);
}

.tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-text h2 {
  color: var(--jade-deep);
  margin-bottom: 1rem;
}

.tech-text p {
  margin-bottom: 1.5rem;
}

.tech-features {
  margin: 1.5rem 0;
}

.tech-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal);
}

.tech-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--gold-soft);
  border-radius: 2px;
}

.tech-image {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-medium);
  border: 2px dashed var(--gray-lighter);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--gray-bg);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold-soft);
}

.testimonial-text {
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author strong {
  display: block;
  color: var(--jade-deep);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: var(--gray-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  height: 200px;
  background: var(--gray-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-medium);
  border: 2px dashed var(--gray-lighter);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  color: var(--jade-deep);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.blog-content p {
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--jade-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.read-more:hover {
  color: var(--gold-soft);
  gap: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--jade-deep) 0%, var(--jade-light) 100%);
  color: var(--white);
  padding: var(--spacing-lg) 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--spacing-lg) 0 0;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: var(--spacing-md);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.8);
}

.footer-brand p {
  color: rgba(255,255,255,0.9);
  margin: 1rem 0;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.25rem;
  opacity: 0.9;
  transition: var(--transition-fast);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--white);
  background: var(--gold-soft);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold-soft);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.9);
  padding: 0.25rem 0;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

.footer-contact p {
  color: rgba(255,255,255,0.9);
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding: var(--spacing-md) 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== FORMULÁRIOS ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.form-group label.required::after {
  content: ' *';
  color: var(--error);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--input-border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--charcoal);
}

.form-control:focus {
  outline: none;
  border-color: var(--jade-deep);
  box-shadow: 0 0 0 3px var(--input-focus);
}

.form-control::placeholder {
  color: var(--gray-light);
}

.form-control.error {
  border-color: var(--error);
}

.form-control.error:focus {
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-top: 0.25rem;
}

.form-error {
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.visible {
  display: block;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ===== FAQ ACCORDION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--jade-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--gray-bg);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-soft);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-medium);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== UTILITÁRIOS ===== */
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.hidden { display: none !important; }

/* ===== ALERTS ===== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-success {
  background: var(--success-light);
  color: var(--success);
  border: 1px solid #A3C9A8;
}

.alert-error {
  background: var(--error-light);
  color: var(--error);
  border: 1px solid #E5B4B9;
}

.alert-info {
  background: var(--info-light);
  color: var(--info);
  border: 1px solid #A6D5DB;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .tech-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    gap: 0.5rem;
    z-index: 999;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-lighter);
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-home {
    min-height: auto;
    padding: 4rem 1rem 2rem;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  section {
    padding: var(--spacing-md) 0;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.25rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .btn-large {
    padding: 0.875rem 2rem;
  }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--jade-deep);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 3000;
}

.skip-link:focus {
  top: 0;
}