/* ============================================
   MEI EXPRESS CONTABILIDADE - ESTILOS GLOBAIS
   ============================================ */

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

:root {
  /* Cores Primárias */
  --bordo-profundo: #5A1515;
  --vermelho-vivo: #7A1B1B;
  --vermelho-hover: #5A1515;

  /* Cores Secundárias */
  --azul-turquesa: #4A9DB5;
  --azul-turquesa-hover: #3A8DA5;
  --azul-marinho: #0F3044;
  --azul-marinho-light: #1A4A64;

  /* Neutros */
  --branco: #FFFFFF;
  --creme: #F5F0E6;
  --cinza-100: #F8F8F8;
  --cinza-200: #E5E5E5;
  --cinza-300: #CCCCCC;
  --cinza-500: #666666;
  --cinza-700: #333333;

  /* Texto */
  --texto-primario: #0F3044;
  --texto-secundario: #333333;
  --texto-muted: #666666;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #1DA851;

  /* Sombras */
  --sombra-sm: 0 2px 4px rgba(15, 48, 68, 0.06);
  --sombra-md: 0 4px 20px rgba(15, 48, 68, 0.08);
  --sombra-lg: 0 8px 30px rgba(15, 48, 68, 0.12);
  --sombra-xl: 0 12px 40px rgba(15, 48, 68, 0.16);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50px;

  /* Transições */
  --transicao: 0.3s ease;
  --transicao-rapida: 0.15s ease;

  /* Fontes */
  --fonte-titulo: 'Montserrat', sans-serif;
  --fonte-corpo: 'Open Sans', sans-serif;
}

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

body {
  font-family: var(--fonte-corpo);
  color: var(--texto-secundario);
  background-color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fonte-titulo);
  color: var(--texto-primario);
  font-weight: 700;
  line-height: 1.2;
}

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(--texto-secundario);
}

a {
  color: var(--azul-turquesa);
  text-decoration: none;
  transition: var(--transicao);
}

a:hover {
  color: var(--azul-marinho);
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Seções */
.section {
  padding: 5rem 0;
}

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

.section-azul {
  background-color: var(--azul-marinho);
  color: var(--branco);
}

.section-azul h2,
.section-azul h3,
.section-azul > .container > .section-header p {
  color: var(--branco);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--vermelho-vivo);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--texto-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--fonte-titulo);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transicao);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--vermelho-vivo);
  color: var(--branco);
}

.btn-primary:hover {
  background-color: var(--bordo-profundo);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-md);
}

.btn-secondary {
  background-color: var(--azul-turquesa);
  color: var(--branco);
}

.btn-secondary:hover {
  background-color: var(--azul-marinho);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-md);
}

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

.btn-outline:hover {
  background-color: var(--azul-marinho);
  color: var(--branco);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--branco);
  border-radius: var(--radius-full);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-md);
}

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

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--azul-marinho);
  box-shadow: var(--sombra-md);
  transition: var(--transicao);
}

.header.scrolled {
  background-color: var(--azul-marinho);
  box-shadow: var(--sombra-lg);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Dropdown Menu */
.nav-item {
  position: relative;
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item-dropdown > .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: var(--transicao);
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-xl);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transicao);
  z-index: 1001;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--branco);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--texto-secundario);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transicao);
}

.dropdown-menu a:hover {
  background: var(--creme);
  color: var(--vermelho-vivo);
  padding-left: 1.75rem;
}

.dropdown-menu a svg {
  width: 20px;
  height: 20px;
  fill: var(--azul-turquesa);
  flex-shrink: 0;
}

.dropdown-menu a:hover svg {
  fill: var(--vermelho-vivo);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--fonte-titulo);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--branco);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vermelho-vivo);
  transition: var(--transicao);
}

.nav-link:hover,
.nav-link.active {
  color: var(--creme);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--branco);
  border-radius: var(--radius-full);
  transition: var(--transicao);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--creme) 0%, var(--branco) 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--azul-marinho) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background-color: var(--vermelho-vivo);
  color: var(--branco);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title span {
  color: var(--vermelho-vivo);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--texto-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

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

.hero-stat-number {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul-marinho);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--texto-muted);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--sombra-xl);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--vermelho-vivo);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.2;
}

/* ============================================
   CARDS E GRID
   ============================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--sombra-md);
  transition: var(--transicao);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--azul-marinho) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--branco);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--texto-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--vermelho-vivo);
}

.card-link:hover {
  color: var(--bordo-profundo);
  gap: 0.75rem;
}

/* ============================================
   PROPOSTA DE VALOR
   ============================================ */

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.valor-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-sm);
  transition: var(--transicao);
  border-top: 4px solid transparent;
}

.valor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
  border-top-color: var(--vermelho-vivo);
}

.valor-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--creme) 0%, var(--branco) 100%);
  border-radius: 50%;
  font-size: 2rem;
}

.valor-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--azul-marinho);
}

.valor-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--azul-marinho);
}

.valor-text {
  font-size: 0.9375rem;
  color: var(--texto-muted);
  margin: 0;
}

/* ============================================
   SOBRE SEÇÃO
   ============================================ */

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-image {
  position: relative;
}

.sobre-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--sombra-lg);
}

.sobre-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--azul-turquesa);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.2;
}

.sobre-grid-reverse {
  direction: rtl;
}

.sobre-grid-reverse > * {
  direction: ltr;
}

.section-branca {
  background: #fff;
}

.sobre-content h2 {
  margin-bottom: 1.5rem;
}

.sobre-content p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.sobre-lista {
  margin: 2rem 0;
}

.sobre-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.sobre-lista li svg {
  width: 24px;
  height: 24px;
  fill: var(--vermelho-vivo);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   SERVIÇOS SEÇÃO
   ============================================ */

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.servico-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--sombra-md);
  transition: var(--transicao);
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--vermelho-vivo);
  transition: var(--transicao);
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
}

.servico-card:hover::before {
  height: 100%;
}

.servico-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--creme) 0%, var(--branco) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.servico-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--azul-marinho);
}

.servico-title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--azul-marinho);
}

.servico-text {
  color: var(--texto-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.servico-lista {
  margin-bottom: 1.5rem;
}

.servico-lista li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--texto-secundario);
  border-bottom: 1px solid var(--cinza-200);
}

.servico-lista li:last-child {
  border-bottom: none;
}

.servico-lista li svg {
  width: 18px;
  height: 18px;
  fill: var(--vermelho-vivo);
  flex-shrink: 0;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.depoimentos-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.depoimentos-slider {
  overflow: hidden;
}

.depoimentos-track {
  display: flex;
  transition: transform 0.5s ease;
}

.depoimento {
  min-width: 100%;
  padding: 0 1rem;
}

.depoimento-content {
  background: var(--branco);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--sombra-lg);
}

.depoimento-texto {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--texto-secundario) !important;
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
}

/* Garantir contraste correto nos depoimentos dentro de seções azuis */
.section-azul .depoimento-content {
  background: var(--branco);
}

.section-azul .depoimento-content p,
.section-azul .depoimento-content h4 {
  color: var(--texto-primario);
}

.section-azul .depoimento-info span {
  color: var(--texto-muted);
}

.depoimento-texto::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--vermelho-vivo);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.depoimento-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--azul-marinho) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
}

.depoimento-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.depoimento-info span {
  font-size: 0.875rem;
  color: var(--texto-muted);
}

.depoimentos-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.depoimentos-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cinza-300);
  border: none;
  cursor: pointer;
  transition: var(--transicao);
}

.depoimentos-dot.active {
  background: var(--vermelho-vivo);
  transform: scale(1.2);
}

/* ============================================
   CTA SEÇÃO
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--vermelho-vivo) 0%, var(--bordo-profundo) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--branco);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: var(--branco);
  color: var(--vermelho-vivo);
}

.cta-section .btn:hover {
  background: var(--creme);
  color: var(--bordo-profundo);
}

.cta-telefone {
  margin-top: 1.5rem;
  color: var(--branco);
  font-size: 1.25rem;
  font-weight: 600;
}

.cta-telefone a {
  color: var(--branco);
  text-decoration: underline;
}

/* ============================================
   MISSÃO, VISÃO, VALORES
   ============================================ */

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mvv-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--sombra-md);
  border-bottom: 4px solid var(--azul-turquesa);
  transition: var(--transicao);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
}

.mvv-card:nth-child(2) {
  border-bottom-color: var(--vermelho-vivo);
}

.mvv-card:nth-child(3) {
  border-bottom-color: var(--azul-marinho);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--creme);
  border-radius: 50%;
}

.mvv-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--azul-marinho);
}

.mvv-title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--azul-marinho);
}

.mvv-text {
  color: var(--texto-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CONTATO
   ============================================ */

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contato-info h3 {
  margin-bottom: 2rem;
}

.contato-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contato-item-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--creme);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contato-item-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--azul-marinho);
}

.contato-item-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contato-item-content p,
.contato-item-content a {
  color: var(--texto-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.contato-item-content a:hover {
  color: var(--vermelho-vivo);
}

.contato-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contato-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--azul-marinho);
  color: var(--branco);
  border-radius: var(--radius-md);
  transition: var(--transicao);
}

.contato-social a:hover {
  background: var(--vermelho-vivo);
  transform: translateY(-3px);
}

.contato-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Formulário */
.contato-form {
  background: var(--branco);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--sombra-lg);
}

.contato-form h3 {
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--texto-primario);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--cinza-200);
  border-radius: var(--radius-md);
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  transition: var(--transicao);
  background: var(--branco);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azul-turquesa);
  box-shadow: 0 0 0 3px rgba(74, 157, 181, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cinza-500);
}

/* ============================================
   MAPA
   ============================================ */

.mapa-container {
  margin-top: 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
}

.mapa-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--azul-marinho);
  color: var(--branco);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--branco);
  transition: var(--transicao);
}

.footer-social a:hover {
  background: var(--vermelho-vivo);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer h4 {
  color: var(--branco);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: var(--transicao);
}

.footer-links a:hover {
  color: var(--branco);
  padding-left: 5px;
}

.footer-contato p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer-contato svg {
  width: 20px;
  height: 20px;
  fill: var(--vermelho-vivo);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--branco);
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  box-shadow: var(--sombra-lg);
  transition: var(--transicao);
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--branco);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================
   HERO INTERNO (PÁGINAS INTERNAS)
   ============================================ */

.hero-interno {
  background: linear-gradient(135deg, var(--azul-marinho) 0%, var(--azul-marinho-light) 100%);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-interno::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-interno h1 {
  color: var(--branco);
  margin-bottom: 1rem;
  position: relative;
}

.hero-interno p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  position: relative;
}

.breadcrumb a,
.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.breadcrumb a:hover {
  color: var(--branco);
}

.breadcrumb span.atual {
  color: var(--branco);
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 0;
    max-width: 500px;
    margin: 0 auto 2rem;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sobre-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--azul-marinho);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    transition: var(--transicao);
  }

  .nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    font-size: 1.5rem;
    padding: 1rem;
  }

  .header-cta {
    flex-direction: column;
    margin-top: 2rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contato p {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .card {
    padding: 1.5rem;
  }

  .servico-card {
    padding: 1.5rem;
  }

  .contato-form {
    padding: 1.5rem;
  }

  .depoimento-content {
    padding: 2rem 1.5rem;
  }

  .depoimento-texto {
    font-size: 1rem;
  }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   PÁGINAS DE SERVIÇOS INDIVIDUAIS
   ============================================ */

/* Hero do Serviço */
.servico-hero {
  background: linear-gradient(135deg, var(--azul-marinho) 0%, var(--azul-marinho-light) 100%);
  padding: 12rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.servico-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.servico-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.servico-hero-content h1 {
  color: var(--branco);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 1.5rem;
}

.servico-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.servico-hero-content .breadcrumb {
  margin-bottom: 1.5rem;
  justify-content: flex-start;
}

.servico-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.servico-hero-image {
  position: relative;
}

.servico-hero-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--sombra-xl);
}

.servico-hero-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--vermelho-vivo);
  color: var(--branco);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--sombra-lg);
}

/* O que é / Descrição do Serviço */
.servico-descricao {
  padding: 5rem 0;
}

.servico-descricao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.servico-descricao-content h2 {
  margin-bottom: 1.5rem;
}

.servico-descricao-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.servico-descricao-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--sombra-lg);
}

/* Benefícios Grid */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.beneficio-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--sombra-md);
  transition: var(--transicao);
  border-bottom: 4px solid transparent;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
  border-bottom-color: var(--vermelho-vivo);
}

.beneficio-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--azul-marinho) 100%);
  border-radius: 50%;
}

.beneficio-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--branco);
}

.beneficio-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--azul-marinho);
}

.beneficio-text {
  color: var(--texto-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* O que está incluso */
.incluso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.incluso-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--branco);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-sm);
  transition: var(--transicao);
}

.incluso-item:hover {
  box-shadow: var(--sombra-md);
  transform: translateX(5px);
}

.incluso-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--creme);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.incluso-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--vermelho-vivo);
}

.incluso-content h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
  color: var(--azul-marinho);
}

.incluso-content p {
  font-size: 0.9375rem;
  color: var(--texto-muted);
  margin: 0;
}

/* Para quem é */
.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.para-quem-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--sombra-md);
  transition: var(--transicao);
}

.para-quem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-lg);
}

.para-quem-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--creme);
  border-radius: 50%;
}

.para-quem-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--azul-marinho);
}

.para-quem-title {
  font-size: 1.125rem;
  color: var(--azul-marinho);
  margin: 0;
}

/* Objeções / FAQ */
.objecoes-container {
  max-width: 900px;
  margin: 0 auto;
}

.objecao-item {
  background: var(--branco);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--sombra-sm);
  overflow: hidden;
}

.objecao-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transicao);
}

.objecao-header:hover {
  background: var(--cinza-100);
}

.objecao-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vermelho-vivo);
  border-radius: 50%;
  flex-shrink: 0;
}

.objecao-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--branco);
}

.objecao-header h4 {
  flex: 1;
  font-size: 1.0625rem;
  color: var(--azul-marinho);
  margin: 0;
}

.objecao-toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--creme);
  border-radius: 50%;
  transition: var(--transicao);
}

.objecao-toggle svg {
  width: 16px;
  height: 16px;
  fill: var(--azul-marinho);
  transition: var(--transicao);
}

.objecao-item.active .objecao-toggle {
  background: var(--azul-marinho);
}

.objecao-item.active .objecao-toggle svg {
  fill: var(--branco);
  transform: rotate(180deg);
}

.objecao-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.objecao-item.active .objecao-content {
  max-height: 500px;
}

.objecao-answer {
  padding: 0 1.5rem 1.5rem;
  padding-left: 4.5rem;
  color: var(--texto-muted);
  line-height: 1.7;
}

.objecao-answer p {
  margin-bottom: 0.5rem;
}

.objecao-answer p:last-child {
  margin-bottom: 0;
}

/* Processo / Como funciona */
.processo-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.processo-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--cinza-200);
  border-radius: var(--radius-full);
}

.processo-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.processo-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vermelho-vivo);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.processo-content {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--sombra-md);
  flex: 1;
}

.processo-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--azul-marinho);
}

.processo-content p {
  color: var(--texto-muted);
  margin: 0;
  font-size: 0.9375rem;
}

/* Comparativo */
.comparativo-table {
  width: 100%;
  background: var(--branco);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--sombra-lg);
}

.comparativo-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparativo-table th,
.comparativo-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--cinza-200);
}

.comparativo-table th {
  background: var(--azul-marinho);
  color: var(--branco);
  font-weight: 600;
}

.comparativo-table th:first-child {
  text-align: left;
}

.comparativo-table th:not(:first-child) {
  text-align: center;
}

.comparativo-table td:not(:first-child) {
  text-align: center;
}

.comparativo-table tr:hover {
  background: var(--cinza-100);
}

.comparativo-check {
  color: var(--whatsapp);
  font-size: 1.25rem;
}

.comparativo-x {
  color: var(--vermelho-vivo);
  font-size: 1.25rem;
}

/* CTA Serviço */
.servico-cta {
  background: linear-gradient(135deg, var(--vermelho-vivo) 0%, var(--bordo-profundo) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.servico-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.servico-cta h2 {
  color: var(--branco);
  margin-bottom: 1rem;
  position: relative;
}

.servico-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.servico-cta .btn {
  position: relative;
  background: var(--branco);
  color: var(--vermelho-vivo);
}

.servico-cta .btn:hover {
  background: var(--creme);
  color: var(--bordo-profundo);
}

.servico-cta-garantia {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  position: relative;
}

.servico-cta-garantia svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsivo Serviços */
@media (max-width: 1024px) {
  .servico-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .servico-hero-content .breadcrumb {
    justify-content: center;
  }

  .servico-hero-buttons {
    justify-content: center;
  }

  .servico-hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .servico-descricao-grid {
    grid-template-columns: 1fr;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .para-quem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .servico-hero {
    padding: 10rem 0 4rem;
  }

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

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

  .para-quem-grid {
    grid-template-columns: 1fr;
  }

  .processo-timeline::before {
    left: 20px;
  }

  .processo-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .comparativo-table {
    overflow-x: auto;
  }

  .comparativo-table table {
    min-width: 600px;
  }

  /* Dropdown Mobile */
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu a {
    color: var(--branco);
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--creme);
    padding-left: 1rem;
  }

  .dropdown-menu a svg {
    display: none;
  }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Classes de Animação */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Animação do WhatsApp Flutuante */
.whatsapp-float a {
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float a:hover {
  animation: none;
  transform: scale(1.15);
}

/* Animação de entrada do Hero */
.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-image {
  animation: fadeInRight 1s ease-out 0.2s both;
}

.hero-stat {
  animation: fadeInUp 0.8s ease-out both;
}

.hero-stat:nth-child(1) { animation-delay: 0.4s; }
.hero-stat:nth-child(2) { animation-delay: 0.5s; }
.hero-stat:nth-child(3) { animation-delay: 0.6s; }

/* Animação de Cards */
.card,
.valor-card,
.mvv-card,
.servico-card,
.beneficio-card,
.para-quem-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.card:nth-child(1), .valor-card:nth-child(1), .servico-card:nth-child(1), .beneficio-card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2), .valor-card:nth-child(2), .servico-card:nth-child(2), .beneficio-card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3), .valor-card:nth-child(3), .servico-card:nth-child(3), .beneficio-card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4), .valor-card:nth-child(4), .servico-card:nth-child(4), .beneficio-card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5), .servico-card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6), .servico-card:nth-child(6) { animation-delay: 0.6s; }
.servico-card:nth-child(7) { animation-delay: 0.7s; }

/* Hover Animado nos Cards */
.card:hover,
.valor-card:hover,
.servico-card:hover {
  transform: translateY(-8px);
}

/* Animação do Section Header */
.section-header h2 {
  animation: fadeInUp 0.8s ease-out;
}

.section-header p {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Animação de Botões */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Animação de Links */
.nav-link::after {
  transition: width 0.3s ease, left 0.3s ease;
}

/* Depoimentos Slider */
.depoimento {
  animation: fadeIn 0.5s ease-out;
}

/* Sobre Grid Animation */
.sobre-image {
  animation: fadeInLeft 1s ease-out;
}

.sobre-content {
  animation: fadeInRight 1s ease-out 0.2s both;
}

/* Lista de Sobre com animação escalonada */
.sobre-lista li {
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.sobre-lista li:nth-child(1) { animation-delay: 0.1s; }
.sobre-lista li:nth-child(2) { animation-delay: 0.2s; }
.sobre-lista li:nth-child(3) { animation-delay: 0.3s; }
.sobre-lista li:nth-child(4) { animation-delay: 0.4s; }

/* Hero interno */
.hero-interno h1 {
  animation: fadeInUp 0.8s ease-out;
}

.hero-interno p {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.breadcrumb {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Contato Items */
.contato-item {
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.contato-item:nth-child(1) { animation-delay: 0.1s; }
.contato-item:nth-child(2) { animation-delay: 0.2s; }
.contato-item:nth-child(3) { animation-delay: 0.3s; }
.contato-item:nth-child(4) { animation-delay: 0.4s; }

/* Contato Form */
.contato-form {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

/* Service Hero Animation */
.servico-hero-content {
  animation: fadeInLeft 1s ease-out;
}

.servico-hero-image {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.servico-hero-badge {
  animation: scaleIn 0.6s ease-out 0.8s both;
}

/* Incluso Items */
.incluso-item {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.incluso-item:nth-child(1) { animation-delay: 0.1s; }
.incluso-item:nth-child(2) { animation-delay: 0.15s; }
.incluso-item:nth-child(3) { animation-delay: 0.2s; }
.incluso-item:nth-child(4) { animation-delay: 0.25s; }
.incluso-item:nth-child(5) { animation-delay: 0.3s; }
.incluso-item:nth-child(6) { animation-delay: 0.35s; }
.incluso-item:nth-child(7) { animation-delay: 0.4s; }
.incluso-item:nth-child(8) { animation-delay: 0.45s; }

/* Objeção Items */
.objecao-item {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.objecao-item:nth-child(1) { animation-delay: 0.1s; }
.objecao-item:nth-child(2) { animation-delay: 0.2s; }
.objecao-item:nth-child(3) { animation-delay: 0.3s; }
.objecao-item:nth-child(4) { animation-delay: 0.4s; }
.objecao-item:nth-child(5) { animation-delay: 0.5s; }
.objecao-item:nth-child(6) { animation-delay: 0.6s; }

/* Processo Timeline */
.processo-item {
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.processo-item:nth-child(1) { animation-delay: 0.1s; }
.processo-item:nth-child(2) { animation-delay: 0.2s; }
.processo-item:nth-child(3) { animation-delay: 0.3s; }
.processo-item:nth-child(4) { animation-delay: 0.4s; }
.processo-item:nth-child(5) { animation-delay: 0.5s; }

/* CTA Section */
.cta-section h2,
.servico-cta h2 {
  animation: fadeInUp 0.8s ease-out;
}

.cta-section p,
.servico-cta p {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.cta-section .btn,
.servico-cta .btn {
  animation: scaleIn 0.6s ease-out 0.3s both;
}

/* Footer */
.footer-brand,
.footer-nav,
.footer-servicos,
.footer-contato {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.footer-brand { animation-delay: 0.1s; }
.footer-nav { animation-delay: 0.2s; }
.footer-servicos { animation-delay: 0.3s; }
.footer-contato { animation-delay: 0.4s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .whatsapp-float a {
    animation: none;
  }
}
