/* ==========================================================================
   ORGANIZA FESTAS - ESTILOS PERSONALIZADOS (100% RESPONSIVO & PREMIUM)
   ========================================================================== */

/* Fontes e Variáveis */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-title: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Paleta de Cores */
  --bg-primary: #f9fafb;
  --bg-secondary: #ffffff;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --color-accent: #FD4C5C;      /* Coral Destaque */
  --color-accent-hover: #e03b4a;
  --color-secondary: #8b5cf6;   /* Roxo Premium */
  --color-success: #10b981;     /* Verde Sucesso */
  --color-border: #e5e7eb;

  /* Transições e Sombras */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px -10px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0,0,0,0.12);
}

/* Reset Moderno */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Utilitários */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Efeito de revelação no scroll (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(253, 76, 92, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 76, 92, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  background-color: var(--text-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Cabeçalho do Topo (Logo Centralizada + Login Direito) */
.header-topo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-topo img {
  max-height: 75px;
  width: auto;
  transition: var(--transition-smooth);
}

.login-topo {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-login {
  padding: 8px 22px !important;
  font-size: 0.95rem !important;
  background-color: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: none !important;
  transition: var(--transition-smooth);
}

.btn-login:hover {
  background-color: #ffffff !important;
  color: #0c0d21 !important;
  border-color: #ffffff !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   HERO / INÍCIO (TELA CHEIA & SLIDE - CÓSMICO PREMIUM)
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 160px 0 80px 0;
  background: radial-gradient(circle at 20% 30%, rgba(253, 76, 92, 0.22) 0%, transparent 45%),
              radial-gradient(circle at 80% 25%, rgba(139, 92, 246, 0.24) 0%, transparent 45%),
              radial-gradient(circle at 50% 75%, rgba(29, 78, 216, 0.28) 0%, transparent 50%),
              #090a16; /* Fundo Cósmico Escuro */
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  color: #ffffff; /* Título Branco no fundo escuro */
}

/* Efeito de Cursor Piscando no Typewriter */
.typewriter-cursor::after {
  content: '|';
  animation: blink-cursor 0.7s infinite;
  color: var(--color-accent);
  margin-left: 4px;
  font-weight: 300;
}

@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.hero p {
  font-size: 1.25rem;
  color: #d1d5db; /* Texto cinza claro para contraste */
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btns .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-btns .btn-outline:hover {
  background-color: #ffffff;
  color: #090a16;
  border-color: #ffffff;
}

.seta-indicativa {
  position: absolute;
  bottom: -90px;
  left: -140px;
  width: 180px;
  height: auto;
  pointer-events: none;
  z-index: 5;
  animation: float-arrow 1.2s ease-in-out infinite alternate;
}

@keyframes float-arrow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.seta-indicativa img {
  width: 100%;
  height: auto;
}

/* Esconder a seta no celular para não bagunçar o empilhamento de botões */
@media (max-width: 768px) {
  .seta-indicativa {
    display: none;
  }
}

/* Background Decorativo no Hero (CSS puro, ajusta no mobile) */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.shape-1 {
  top: 15%;
  left: 10%;
  width: 250px;
  height: 250px;
  background-color: rgba(253, 76, 92, 0.15);
}

.shape-2 {
  bottom: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  background-color: rgba(139, 92, 246, 0.15);
}

/* ==========================================================================
   CONFETE E DESTAQUE NO TEXTO
   ========================================================================== */
.encantar-destaque {
  font-weight: 700;
  color: var(--color-accent);
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.encantar-destaque:hover {
  transform: scale(1.05);
}

.encantar-destaque::before,
.encantar-destaque::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes confetti-burst-1 {
  0% {
    opacity: 1;
    box-shadow: 
      0 0 0 #FFC947, 0 0 0 #FD4C5C, 0 0 0 #3b82f6, 
      0 0 0 #10b981, 0 0 0 #ec4899, 0 0 0 #8b5cf6;
  }
  100% {
    opacity: 0;
    box-shadow: 
      -50px -30px 0 #FFC947, 50px -40px 0 #FD4C5C, 
      -70px 10px 0 #3b82f6, 70px 0px 0 #10b981,
      -30px -50px 0 #ec4899, 30px -50px 0 #8b5cf6;
  }
}

@keyframes confetti-burst-2 {
  0% {
    opacity: 1;
    box-shadow: 
      0 0 0 #FD4C5C, 0 0 0 #FFC947, 0 0 0 #10b981, 
      0 0 0 #3b82f6, 0 0 0 #8b5cf6, 0 0 0 #ec4899;
  }
  100% {
    opacity: 0;
    box-shadow: 
      -40px 30px 0 #FD4C5C, 40px 40px 0 #FFC947, 
      -50px -20px 0 #10b981, 50px -15px 0 #3b82f6,
      -10px 50px 0 #8b5cf6, 10px -45px 0 #ec4899;
  }
}

.encantar-destaque:hover::before {
  animation: confetti-burst-1 0.7s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.encantar-destaque:hover::after {
  animation: confetti-burst-2 0.7s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* ==========================================================================
   ELEMENTOS DECORATIVOS FLUTUANTES (HERO)
   ========================================================================== */
.decor-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  animation: float-animation 6s ease-in-out infinite alternate;
}

@keyframes float-animation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.shape-balloon {
  top: 10%;
  left: 6%;
  max-width: 150px;
  animation-duration: 5s;
}

.shape-bouquet {
  top: 38%;
  left: 3%;
  max-width: 140px;
  animation-duration: 7s;
}

.shape-vase {
  bottom: 10%;
  left: 5%;
  max-width: 110px;
  animation-duration: 6s;
}

.shape-box {
  bottom: 8%;
  right: 5%;
  max-width: 140px;
  animation-duration: 8s;
}

.shape-extra1 {
  top: 12%;
  right: 8%;
  max-width: 120px;
  animation-duration: 6.5s;
}

.shape-extra2 {
  top: 42%;
  right: 3%;
  max-width: 150px;
  animation-duration: 5.5s;
}

.decor-shape img {
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
  transition: opacity 0.3s ease;
}

/* Esconder elementos no celular para foco na leitura de forma limpa e responsiva */
@media (max-width: 992px) {
  .decor-shape {
    display: none;
  }
}

/* ==========================================================================
   RECURSOS / DIFERENCIAIS
   ========================================================================== */
.section {
  padding: 100px 0;
}

.section-bg-light {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pain-points-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.pain-points-info {
  flex: 1.2;
}

.pain-points-media {
  flex: 0.8;
  display: flex;
  justify-content: center;
  position: relative;
}

.pain-points-media img {
  max-width: 100%;
  height: auto;
}

/* Sombra Sólida Deslocada (Retro/Offset Shadow) */
.image-shadow-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-shadow-wrapper img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.image-shadow-wrapper::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Sombra sólida preta */
  border-radius: 20px;
  z-index: 1;
  transition: var(--transition-smooth);
}

.image-shadow-wrapper.to-right::after {
  left: 8px;
}

.image-shadow-wrapper.to-left::after {
  right: 8px;
  left: auto;
}

.image-shadow-wrapper:hover::after {
  transform: translate(1px, 1px);
}

/* Balão Flutuante Sobreposto nas Imagens */
.floating-balloon-overlay {
  position: absolute;
  top: 50%;
  right: -130px;
  width: 450px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  animation: float-balloon-img-centered 3.2s ease-in-out infinite alternate;
}

@keyframes float-balloon-img-centered {
  0% {
    transform: translateY(-50%) translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) translateY(-20px) rotate(4deg);
  }
}

.floating-balloon-overlay img {
  width: 100% !important;
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15)) !important;
}

.pain-points-info h2,
.benefit-info h2,
.section-header h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 35px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.section-header h2 {
  margin-bottom: 48px;
}

.pain-points-list {
  list-style: none;
}

.pain-points-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.pain-points-list li:last-child {
  margin-bottom: 0;
}

.pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon img {
  width: 100%;
  height: auto;
}

.pain-text h3,
.checklist-data h4 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.pain-text p,
.checklist-data p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   BENEFÍCIOS (DETALHES)
   ========================================================================== */
.benefit-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

.benefit-row.reversed {
  flex-direction: row-reverse;
}

.benefit-media, .benefit-info {
  flex: 1;
}

.benefit-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.benefit-media img {
  max-width: 100%;
  height: auto;
}

/* Definições de título integradas acima */

.benefit-info > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.checklist {
  list-style: none;
}

.checklist-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.checklist-item:last-child {
  margin-bottom: 0;
}

.checklist-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-success);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos integrados de checklist-data acima */

/* ==========================================================================
   MÓDULOS / RECURSOS DO SISTEMA
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 35px 30px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.feature-media-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-media-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.feature-card:hover .feature-media-wrapper {
  background-color: var(--color-secondary);
}

.feature-icon {
  width: 28px;
  height: 28px;
  color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  color: #ffffff;
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   PLANOS DE PREÇOS (MENSAL/ANUAL & 4 COLUNAS)
   ========================================================================== */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle span {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Alternador Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input:checked + .slider {
  background-color: var(--color-accent);
}

input:checked + .slider:before {
  transform: translateX(28px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-card-header h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-family: var(--font-title);
  color: var(--text-dark);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price .currency {
  font-size: 1.25rem;
  font-weight: 600;
}

.price .amount {
  font-size: 2.75rem;
  font-weight: 800;
}

.price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card-body {
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-card-body h5 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li img {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.pricing-card-footer .btn {
  width: 100%;
}

/* Serviços Adicionais */
.additional-services {
  margin-top: 60px;
  padding: 20px 35px;
  background-color: var(--bg-secondary);
  border: 1px dashed var(--color-border);
  border-radius: 16px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.additional-services h3 {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  flex-shrink: 0;
  margin-bottom: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.additional-services p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.additional-services a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.additional-services a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}



/* Faixa Corrida (Marquee Ticker) */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #000000;
  padding: 10px 0;
  white-space: nowrap;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker {
  display: flex;
  width: max-content;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 120px;
  padding-right: 120px;
  animation: marquee-loop 90s linear infinite;
}

.ticker-track span {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 40px;
}

.ticker-img-icon {
  width: 42px;
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  animation: slow-rotate 18s linear infinite;
}

@keyframes slow-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes marquee-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ==========================================================================
   CONTATO & FOOTER
   ========================================================================== */
.contact-section {
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 50px 0 30px 0;
  position: relative;
}

.contact-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.contact-img {
  flex: 1.3;
  display: flex;
  justify-content: center;
}

.contact-content {
  flex: 0.7;
}

.contact-img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.contact-content h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.contact-content p {
  color: #9ca3af;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.footer {
  background-color: #000000;
  color: #9ca3af;
  padding: 60px 0 30px 0;
  border-top: 1px solid #1f2937;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand img {
  max-height: 50px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4 {
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* Botão Voltar ao Topo com Círculo de Progresso */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  background-color: var(--bg-secondary);
}

.progress-wrap.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: '↑';
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 44px;
  width: 46px;
  height: 46px;
  left: 0;
  top: 0;
  color: var(--color-accent);
  z-index: 1;
  transition: var(--transition-smooth);
}

.progress-wrap:hover::after {
  transform: translateY(-2px);
}

.progress-wrap svg.progress-circle {
  width: 100%;
  height: 100%;
  display: block;
}

.progress-wrap svg.progress-circle .track-path {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 4;
}

.progress-wrap svg.progress-circle .progress-path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 4;
  stroke-linecap: round;
  box-sizing: border-box;
  transition: stroke-dashoffset 10ms linear;
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE COMPLETA (MOBILE-FIRST)
   ========================================================================== */

/* Telas grandes e médias (Ajustes de layout) */
@media (max-width: 1200px) {
  .hero h1 { font-size: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 992px) {
  .hero h1 { font-size: 2.5rem; }
  .pain-points-row {
    flex-direction: column;
    gap: 40px;
  }
  .pain-points-info h2,
  .benefit-info h2,
  .section-header h2,
  .contact-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  .benefit-row, .benefit-row.reversed {
    flex-direction: column;
    gap: 40px;
  }
  .contact-wrap {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Telas pequenas (Celulares) */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 20px; }
  
  .header-topo {
    padding: 15px 0;
  }
  .logo-topo img {
    max-height: 48px;
  }
  .btn-login {
    padding: 6px 14px !important;
    font-size: 0.85rem !important;
  }
  
  .hero {
    padding: 130px 0 60px 0 !important;
    align-items: flex-start; /* começa um pouco mais no topo se a tela for pequena */
  }
  .hero-content {
    text-align: center;
  }
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
  
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  .pain-points-info h2,
  .benefit-info h2,
  .section-header h2,
  .contact-content h2 {
    font-size: 1.8rem;
  }
  
  .pricing-card {
    padding: 24px 20px;
  }

  .additional-services {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }

  .additional-services h3 {
    white-space: normal;
  }
  
  .contact-content h2 {
    font-size: 2rem;
  }
  .contact-img img {
    max-width: 60%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
