/* ====================================================================
   RESET E VARIÁVEIS GLOBAIS
   ==================================================================== */
:root {
  --primary-color: #244b37;      /* verde escuro */
  --primary-light: #c4d182;      /* verde claro */
  --primary-dark: #1a3728;       /* verde mais escuro */
  --secondary-color: #c4d182;    /* verde claro */
  --dark-color: #244b37;         /* fundo escuro */
  --light-color: #fbf8f4;        /* off-white */
  --gray-color: #9B8F82;         /* cinza terroso */
  --dark-gray: #6B5E52;          /* cinza escuro */
  --white: #FFFFFF;
  --black: #000000;
  --accent-glow: #c4d182;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Configurações base do HTML */
html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px */
}

/* Configurações do body */
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Estilos para títulos */
h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

/* ====================================================================
   BOTÕES
   ==================================================================== */

/* Botão padrão */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  gap: 1rem;
  text-decoration: none;
}

/* Botão primário */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* Botão outline */
.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--secondary-color);
}

/* Botão outline sobre-mim*/
.btn-outline-so{
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* Botão WhatsApp */
.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

/* ====================================================================
   SEÇÕES E CABEÇALHOS
   ==================================================================== */

/* Cabeçalho de seção */
.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

/* Título de seção */
.section-title {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: var(--dark-color);
}

.section-title span {
  color: var(--primary-light);
}

/* Linha decorativa abaixo do título */
.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.3rem;
  background-color: var(--primary-light);
  border-radius: 1rem;
}

/* Subtítulo de seção */
.section-subtitle {
  font-size: 1.6rem;
  color: var(--gray-color);
  max-width: 60rem;
  margin: 0 auto;
}

/* ====================================================================
   LOADER COM LOGO ANIMADA
   ==================================================================== */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Container da logo animada */
.loader-logo {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

/* Texto da logo no loader */
.loader-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.loader-firstname {
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  animation: slideInLeft 0.5s ease-out;
}

.loader-lastname {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: var(--dark-color);
  letter-spacing: -0.5px;
  margin-top: -0.3rem;
  animation: slideInRight 0.5s ease-out;
}

.loader-title {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--gray-color);
  letter-spacing: 2px;
  margin-top: 0.5rem;
  text-transform: uppercase;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Animação de pontos pulsantes */
.loader-animation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.loader-dot {
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}

.loader-dot:nth-child(1) {
  animation-delay: 0s;
}

.loader-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
  animation-delay: 0.4s;
}

/* Animações */
@keyframes pulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    background-color: var(--primary-dark);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

/* Responsividade do loader */
@media (max-width: 768px) {
  .loader-firstname,
  .loader-lastname {
    font-size: 2.4rem;
  }
  
  .loader-title {
    font-size: 1rem;
  }
  
  .loader-dot {
    width: 0.8rem;
    height: 0.8rem;
  }
}

@media (max-width: 576px) {
  .loader-firstname,
  .loader-lastname {
    font-size: 2rem;
  }
  
  .loader-title {
    font-size: 0.9rem;
  }
}

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

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
}

.whatsapp-float a {
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 1rem 3rem rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  background-color: #128C7E;
  transform: translateY(-5px);
}

.whatsapp-float i {
  font-size: 2.4rem;
  margin-right: 1rem;
}

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

/* Header fixo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 999;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
}

/* Container do header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ====================================================================
   LOGO ESTILIZADA
   ==================================================================== */

/* Container da logo */
.header-logo {
  text-decoration: none;
  margin-left: auto;
  order: 2;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

/* Primeiro nome - Thayna */
.logo-firstname {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

/* Sobrenome - Oliveira */
.logo-lastname {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-top: -0.3rem;
}

/* Título - Nutricionista */
.logo-title {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

/* ====================================================================
   NAVEGAÇÃO DESKTOP
   ==================================================================== */

.header-nav {
  order: 1;
  margin-right: 3rem;
}

.header-nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.header-nav li a {
  font-size: 1.6rem;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: var(--transition);
}

/* Linha animada abaixo do link */
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.header-nav li a:hover::after,
.header-nav li a.active::after {
  width: 100%;
}

/* ====================================================================
   MENU MOBILE
   ==================================================================== */

/* Botão do menu mobile */
.mobile-menu {
  display: none;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  order: 1;
  z-index: 1000;
}

/* Menu mobile lateral */
.navbar-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: var(--dark-color);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 999;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
}

.navbar-mobile.active {
  left: 0;
}

.navbar-mobile ul {
  list-style: none;
  flex-direction: column;
  gap: 2rem;
}

.navbar-mobile li a {
  color: var(--white);
  font-size: 1.8rem;
  padding: 1rem 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* Overlay do menu mobile */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Remove scroll quando menu está aberto */
.no-scroll {
  overflow: hidden;
}

/* Responsividade do header */
@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .header-logo {
    order: 2;
    margin-left: 0;
    flex-grow: 1;
    text-align: center;
  }
  .logo-text {
    align-items: center;
  }
  .logo-firstname, .logo-lastname {
    font-size: 2rem;
  }
}

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

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 70rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background com imagem e overlay profissional */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(36, 75, 55, 0.6) 50%, rgba(0, 0, 0, 0.5) 100%),
    url('images/background-thayna-oliveira.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* Filtros profissionais combinados */
  filter: brightness(1.05) contrast(1.1) saturate(1.05);
  /* Pequeno blur sutil para dar profundidade */
  filter: blur(1px) brightness(1.05) contrast(1.1) saturate(1.05);
  transform: scale(1.01);
  transition: filter 0.8s ease;
}

/* Efeito de zoom suave ao carregar */
.hero-section.loaded .hero-bg {
  transform: scale(1);
  transition: transform 1.5s ease-out;
}

/* Overlay adicional para melhorar legibilidade do texto */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Conteúdo do hero */
.hero-content {
  max-width: 75rem;
  color: var(--white);
}

.hero-title {
  font-size: 5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
}

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

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
  color: var(--light-color);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
}

/* Botão de scroll down */
.scroll-down {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  border: 0.2rem solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-3rem) translateX(-50%); }
  60% { transform: translateY(-1.5rem) translateX(-50%); }
}

/* Responsividade Hero */
@media (max-width: 768px) {
  .hero-title { font-size: 3.5rem; }
  .hero-buttons { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.6rem; }
}

/* ====================================================================
   ESPECIALIDADES SECTION
   ==================================================================== */

.services-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3728 100%);
}

.services-section .section-title,
.services-section .section-subtitle {
  color: var(--white);
}

/* Grid de serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Card de serviço */
.service-card {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1rem);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
  border: 0.1rem solid rgba(196, 209, 130, 0.2);
}

.service-card:hover {
  transform: translateY(-1rem);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-light);
}

/* Ícone do serviço */
.service-icon {
  width: 7rem;
  height: 7rem;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--dark-color);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.service-card p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--light-color);
}

/* Link do serviço */
.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-light);
  transition: var(--transition);
  text-decoration: none;
}

.service-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--white);
}

.service-link:hover i {
  transform: translateX(0.5rem);
}

/* ====================================================================
   SOBRE MIM SECTION
   ==================================================================== */

.about-section {
  padding: 10rem 0;
  background-color: var(--white);
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 5rem;
}

/* Conteúdo sobre */
.about-content {
  flex: 1;
  background-color: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

/* Imagem de perfil */
.about-image {
  flex: 1;
  position: relative;
}

.profile-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

/* Ajustes no header da seção sobre */
.about-content .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.about-content .section-title::after {
  left: 0;
  transform: translateX(0);
  background-color: var(--primary-light);
}

.about-content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Features da seção sobre */
.about-features {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background-color: rgba(36, 75, 55, 0.1);
  border-radius: 0.5rem;
}

.feature i {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.feature p {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: var(--gray-color);
}

/* Responsividade Sobre */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .about-content { width: 100%; }
}

@media (max-width: 576px) {
  .about-section { padding: 6rem 0; }
  .about-content { padding: 3rem; }
}

/* ====================================================================
   DIFERENCIAIS SECTION
   ==================================================================== */

.features-section {
  padding: 10rem 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

/* Card de diferencial */
.feature-card {
  background-color: var(--light-color);
  padding: 4rem 3rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Linha lateral animada */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-1rem);
}

.feature-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

/* Número do diferencial */
.feature-number {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(36, 75, 55, 0.05);
  position: absolute;
  top: 2rem;
  right: 3rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 1.4rem;
  color: var(--gray-color);
  position: relative;
  z-index: 1;
}

/* ====================================================================
   PROCESSO SECTION (CORRIGIDO)
   ==================================================================== */

.premium-process-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark-color) 0%, #1a3728 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Efeito parallax no fundo da seção processo */
.premium-process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(196, 209, 130, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.premium-process-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.premium-header {
  text-align: center;
  margin-bottom: 50px;
}

.premium-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.premium-title span {
  color: var(--primary-light);
}

.premium-subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

/* Indicadores de passo - CORRIGIDO */
.step-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.step-indicator {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.step-indicator.active {
  background: var(--primary-light);
  color: var(--dark-color);
  border-color: var(--primary-light);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(196, 209, 130, 0.5);
}

.step-indicator::after {
  content: attr(data-step);
  position: absolute;
  bottom: -30px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* Container dos passos */
.premium-steps {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  transition: all 0.3s ease;
}

.premium-step {
  display: none;
  animation: fadeInUp 0.6s ease forwards;
}

.premium-step.active {
  display: block;
}

/* Conteúdo de cada passo */
.step-content {
  padding: 20px;
  text-align: center;
}

.step-content h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.step-content h3 i {
  color: var(--primary-light);
  font-size: 4rem;
  animation: pulse 2s ease-in-out infinite;
}

.step-content p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

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

/* Responsividade Processo */
@media (max-width: 768px) {
  .premium-process-section {
    padding: 60px 20px;
  }
  
  .premium-title {
    font-size: 2.8rem;
  }
  
  .premium-subtitle {
    font-size: 1.4rem;
  }
  
  .step-indicator {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .step-indicators {
    gap: 20px;
  }
  
  .premium-steps {
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .step-content h3 {
    font-size: 1.8rem;
    flex-direction: column;
  }
  
  .step-content h3 i {
    font-size: 3rem;
  }
  
  .step-content p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .step-indicator {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .step-indicators {
    gap: 15px;
  }
  
  .step-indicator::after {
    bottom: -25px;
    font-size: 0.85rem;
  }
  
  .premium-steps {
    padding: 25px 15px;
  }
  
  .step-content p {
    font-size: 1.3rem;
  }
}

/* ====================================================================
   DEPOIMENTOS SECTION - APENAS GOOGLE REVIEWS
   ==================================================================== */

.testimonials-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Efeito de ondas decorativas */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, rgba(36, 75, 55, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, transparent 0%, rgba(36, 75, 55, 0.05) 100%);
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header da seção - Moderno */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 1rem;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--gray-color);
  font-weight: 400;
  max-width: 600px;
  margin: 2rem auto 0;
}

/* ====================================================================
   GOOGLE REVIEWS WIDGET - ELFSIGHT
   ==================================================================== */

.google-reviews-widget {
  width: 100%;
  margin: 0 auto 4rem;
  border-radius: 2rem;
  overflow: hidden;
  background: transparent;
}

/* Estilização do widget Elfsight */
.eapps-widget-container {
  background: transparent !important;
}

/* ====================================================================
   SUPPORT TEXT - TAMANHO AUMENTADO
   ==================================================================== */

.support-text {
  text-align: center;
  margin-top: 5rem;
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 3rem;
  border-radius: 5rem;
  backdrop-filter: blur(4px);
  width: auto;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(154, 176, 149, 0.2);
}

.support-text i {
  color: var(--primary-color);
  font-size: 2.2rem;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.08);
  }
}

/* Efeito parallax no fundo */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(196, 209, 130, 0.03) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(36, 75, 55, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ====================================================================
   RESPONSIVIDADE
   ==================================================================== */

@media (max-width: 992px) {
  .testimonials-section {
    padding: 8rem 0;
  }
  
  .section-title {
    font-size: 3.2rem;
  }
  
  .section-subtitle {
    font-size: 1.6rem;
  }
  
  .support-text {
    font-size: 1.8rem;
    padding: 1.2rem 2.5rem;
    gap: 0.8rem;
  }
  
  .support-text i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 6rem 0;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .section-subtitle {
    font-size: 1.4rem;
  }
  
  .google-reviews-widget {
    margin-bottom: 3rem;
  }
  
  .support-text {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    gap: 0.8rem;
  }
  
  .support-text i {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .section-subtitle {
    font-size: 1.3rem;
  }
  
  .google-reviews-widget {
    margin-bottom: 2rem;
  }
  
  .support-text {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    gap: 0.6rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .support-text i {
    font-size: 1.6rem;
  }
}

@media (max-width: 400px) {
  .support-text {
    font-size: 1.2rem;
    padding: 0.7rem 1.2rem;
  }
  
  .support-text i {
    font-size: 1.4rem;
  }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* Animação de entrada */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"] {
  animation: fadeUp 0.6s ease forwards;
}

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

.contact-section {
  padding: 10rem 0;
  background-color: var(--white);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Container principal - dois cards lado a lado */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

/* Card de informações de contato */
.contact-card {
  background: var(--light-color);
  border-radius: 2rem;
  padding: 4rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* Botão WhatsApp principal */
.contact-whatsapp-btn {
  margin-bottom: 3rem;
  text-align: center;
}

.contact-whatsapp-btn .btn {
  background-color: #25D366;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  width: 100%;
  border-radius: 5rem;
}

.contact-whatsapp-btn .btn:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.contact-whatsapp-btn .btn i {
  font-size: 2.4rem;
  margin-right: 1rem;
}

/* Itens de informação (um embaixo do outro) */
.info-item {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Ícone circular */
.info-item i {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item:hover i {
  background-color: var(--primary-light);
  transform: scale(1.05);
}

/* Conteúdo da informação */
.info-content {
  flex: 1;
}

.info-content p {
  font-size: 1.5rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* Link do endereço */
.address-link {
  font-size: 1.5rem;
  color: var(--dark-gray);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.5;
  display: inline-block;
}

.address-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Card CTA (Call to Action) */
.cta-card {
  background: linear-gradient(135deg, var(--primary-light));
  padding: 5rem 4rem;
  border-radius: 2rem;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.cta-card h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
  opacity: 0.9;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.cta-card .btn-primary {
  background-color: var(--dark-color);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.5rem 3rem;
  border-radius: 5rem;
  position: relative;
  z-index: 1;
}

.cta-card .btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-primary i {
  font-size: 2rem;
  margin-right: 1rem;
}

/* Redes sociais */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links a {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--dark-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--primary-light);
  transform: translateY(-5px);
}

/* Responsividade Contato */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-card {
    padding: 3rem;
  }
  
  .cta-card {
    padding: 4rem 3rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 6rem 0;
  }
  
  .contact-card {
    padding: 2.5rem;
  }
  
  .info-item {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .info-item i {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
  
  .info-content p,
  .address-link {
    font-size: 1.3rem;
  }
  
  .cta-card h3 {
    font-size: 2rem;
  }
  
  .cta-card p {
    font-size: 1.4rem;
  }
  
  .contact-whatsapp-btn .btn {
    font-size: 1.4rem;
    padding: 1.2rem 2rem;
  }
  
  .social-links a {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}

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

.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 8rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 5rem;
  height: 0.2rem;
  background-color: var(--primary-light);
}

.footer-col p {
  font-size: 1.4rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

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

.footer-col ul li {
  margin-bottom: 1.5rem;
}

.footer-col ul li a {
  font-size: 1.4rem;
  color: var(--gray-color);
  transition: var(--transition);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  transform: translateX(0.5rem);
  display: inline-block;
}

/* Rodapé inferior */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 1.2rem;
  color: var(--gray-color);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 1.2rem;
  color: var(--gray-color);
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-light);
}

/* Responsividade Footer */
@media (max-width: 768px) {
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ====================================================================
   MEDIA QUERIES GLOBAIS
   ==================================================================== */

@media (max-width: 576px) {
  /* Ajustes para dispositivos móveis pequenos */
  .whatsapp-float a span { display: none; }
  .whatsapp-float a { 
    width: 5rem; 
    height: 5rem; 
    border-radius: 50%; 
    justify-content: center; 
    padding: 0; 
  }
  .whatsapp-float i { margin-right: 0; }
  .section-title { font-size: 2.8rem; }
}

/* ============================================
   SEÇÃO FAQ - VERDE ABACATE CORRETA
   TEXTOS GRANDES E RESPONSIVO APRIMORADO
   ============================================ */

.faq-section {
  background: linear-gradient(135deg, #e3eda3 0%, #EAEFD0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Linha decorativa no topo - Verde Abacate */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #A8C256, #C4D182, #D4E59A, #C4D182, #A8C256);
  background-size: 200% 100%;
  animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Elementos decorativos de fundo */
.faq-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 194, 86, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Container principal da FAQ */
.faq-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER DA SEÇÃO - TEXTOS BEM GRANDES
   ============================================ */

.faq-section .section-header {
  text-align: center;
  margin-bottom: 45px;
}

.faq-section .section-title {
  font-size: 4rem;
  font-weight: 700;
  color: #2C4A3B;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-section .section-title span {
  color: #A8C256;
  position: relative;
  display: inline-block;
}

.faq-section .section-title span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C4D182, #8BA843);
  border-radius: 4px;
}

.faq-section .section-subtitle {
  color: #6B7A6B;
  font-size: 1.8rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* ============================================
   ÍCONE DECORATIVO
   ============================================ */

.faq-icon-decoration {
  text-align: center;
  margin-bottom: 50px;
}

.faq-icon-decoration i {
  font-size: 5rem;
  color: #A8C256;
  background: white;
  padding: 25px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(168, 194, 86, 0.25);
  transition: all 0.3s ease;
}

.faq-icon-decoration i:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 15px 40px rgba(168, 194, 86, 0.35);
  color: #8BA843;
}

/* ============================================
   CARDS DE PERGUNTAS - TEXTOS BEM GRANDES
   ============================================ */

.faq-item {
  background: white;
  border-radius: 28px;
  margin-bottom: 28px;
  box-shadow: 0 12px 35px rgba(100, 100, 50, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(168, 194, 86, 0.3);
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 25px 55px rgba(168, 194, 86, 0.25);
  transform: translateY(-5px);
  border-color: #C4D182;
}

/* Cabeçalho da pergunta - TEXTO BEM GRANDE */
.faq-question {
  padding: 30px 35px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #2C4A3B;
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.faq-question span {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  line-height: 1.5;
}

/* Ícone de seta */
.faq-question i {
  color: #A8C256;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F7E8;
  border-radius: 50%;
}

.faq-item:hover .faq-question i {
  background: #EAEFD0;
  transform: scale(1.1);
}

/* Estado ativo */
.faq-item.active .faq-question {
  background: linear-gradient(135deg, #FDFEF8, #ffffff);
  border-bottom: 1px solid rgba(168, 194, 86, 0.3);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: #A8C256;
  color: white;
  box-shadow: 0 3px 12px rgba(168, 194, 86, 0.5);
}

/* Resposta - TEXTO BEM GRANDE */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 35px;
  background: #FEFEF8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 35px 32px 35px;
}

.faq-answer p {
  color: #000000;
  line-height: 1.85;
  margin: 0;
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.faq-answer strong {
  color: #8BA843;
  font-weight: 700;
  background: linear-gradient(120deg, #F5F7E8 0%, #F5F7E8 40%, transparent 60%);
  padding: 0 5px;
  border-radius: 5px;
}

/* ============================================
   BOTÃO CTA
   ============================================ */

.faq-cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #C4D182;
  color: #2C4A3B;
  padding: 18px 48px;
  border-radius: 60px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(168, 194, 86, 0.4);
  border: none;
  cursor: pointer;
}

.faq-cta-btn i {
  font-size: 2.2rem;
  color: #2C4A3B;
  transition: all 0.3s ease;
}

.faq-cta-btn:hover {
  background: #A8C256;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(168, 194, 86, 0.5);
  color: #1A3A2A;
}

.faq-cta-btn:hover i {
  transform: scale(1.08);
  color: #1A3A2A;
}

/* ============================================
   ANIMAÇÃO DE ENTRADA
   ============================================ */

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

.faq-item {
  animation: fadeInUpFaq 0.5s ease forwards;
  opacity: 0;
}

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

/* ============================================
   RESPONSIVIDADE APRIMORADA
   ============================================ */

/* Desktop médio */
@media (max-width: 1200px) {
  .faq-section {
    padding: 90px 0;
  }
  
  .faq-section .section-title {
    font-size: 3.5rem;
  }
  
  .faq-question {
    padding: 28px 32px;
    font-size: 1.7rem;
  }
  
  .faq-answer p {
    font-size: 1.4rem;
  }
  
  .faq-icon-decoration i {
    font-size: 4.5rem;
    padding: 22px;
  }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
  .faq-section {
    padding: 80px 0;
  }
  
  .faq-section .section-title {
    font-size: 3.2rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 1.5rem;
  }
  
  .faq-question {
    padding: 25px 30px;
    font-size: 1.5rem;
  }
  
  .faq-question i {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }
  
  .faq-answer p {
    font-size: 1.3rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 480px;
    padding: 0 30px 28px 30px;
  }
  
  .faq-cta-btn {
    padding: 15px 40px;
    font-size: 1.5rem;
  }
  
  .faq-cta-btn i {
    font-size: 1.8rem;
  }
  
  .faq-icon-decoration i {
    font-size: 4rem;
    padding: 20px;
  }
}

/* Mobile Grande (576px - 768px) */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }
  
  .faq-section .section-title {
    font-size: 2.8rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 1.4rem;
    padding: 0 15px;
  }
  
  .faq-question {
    padding: 22px 25px;
    font-size: 1.4rem;
    gap: 15px;
  }
  
  .faq-question i {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 550px;
    padding: 0 25px 24px 25px;
  }
  
  .faq-answer p {
    font-size: 1.2rem;
    line-height: 1.75;
  }
  
  .faq-cta-wrapper {
    margin-top: 45px;
  }
  
  .faq-cta-btn {
    padding: 13px 35px;
    font-size: 1.4rem;
    gap: 12px;
  }
  
  .faq-cta-btn i {
    font-size: 1.6rem;
  }
  
  .faq-container {
    padding: 0 15px;
  }
  
  .faq-icon-decoration {
    margin-bottom: 35px;
  }
  
  .faq-icon-decoration i {
    font-size: 3.2rem;
    padding: 18px;
  }
}

/* Mobile (até 576px) */
@media (max-width: 576px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section .section-title {
    font-size: 2.4rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  
  .faq-question {
    padding: 18px 20px;
    font-size: 1.3rem;
    gap: 12px;
  }
  
  .faq-question i {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 650px;
    padding: 0 18px 20px 18px;
  }
  
  .faq-answer p {
    font-size: 1.15rem;
    line-height: 1.7;
  }
  
  .faq-cta-wrapper {
    margin-top: 40px;
  }
  
  .faq-cta-btn {
    padding: 12px 28px;
    font-size: 1.3rem;
    gap: 10px;
  }
  
  .faq-cta-btn i {
    font-size: 1.4rem;
  }
  
  .faq-container {
    padding: 0 12px;
  }
  
  .faq-icon-decoration {
    margin-bottom: 30px;
  }
  
  .faq-icon-decoration i {
    font-size: 2.5rem;
    padding: 15px;
  }
}

/* Mobile Pequeno (até 400px) */
@media (max-width: 400px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-section .section-title {
    font-size: 2rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 1.1rem;
  }
  
  .faq-question {
    padding: 16px 16px;
    font-size: 1.2rem;
    gap: 10px;
  }
  
  .faq-question i {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 700px;
    padding: 0 16px 16px 16px;
  }
  
  .faq-answer p {
    font-size: 1rem;
    line-height: 1.65;
  }
  
  .faq-cta-btn {
    padding: 10px 22px;
    font-size: 1.1rem;
    gap: 8px;
  }
  
  .faq-cta-btn i {
    font-size: 1.2rem;
  }
  
  .faq-container {
    padding: 0 10px;
  }
  
  .faq-icon-decoration i {
    font-size: 2rem;
    padding: 12px;
  }
}

/* Mobile Extra Pequeno (até 340px) */
@media (max-width: 340px) {
  .faq-section .section-title {
    font-size: 1.8rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 14px 12px;
    font-size: 1.1rem;
  }
  
  .faq-answer p {
    font-size: 0.95rem;
  }
  
  .faq-cta-btn {
    padding: 9px 18px;
    font-size: 1rem;
  }
  
  .faq-cta-btn i {
    font-size: 1.1rem;
  }
  
  .faq-icon-decoration i {
    font-size: 1.8rem;
    padding: 10px;
  }
}

/* Telas Grandes (Desktop HD) */
@media (min-width: 1400px) {
  .faq-container {
    max-width: 1100px;
  }
  
  .faq-section .section-title {
    font-size: 4.5rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 35px 40px;
    font-size: 2rem;
  }
  
  .faq-question i {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
  }
  
  .faq-answer p {
    font-size: 1.6rem;
  }
  
  .faq-cta-btn {
    padding: 20px 55px;
    font-size: 2rem;
  }
  
  .faq-cta-btn i {
    font-size: 2.4rem;
  }
  
  .faq-icon-decoration i {
    font-size: 5.5rem;
    padding: 28px;
  }
}