/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9f9f9;
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
h1,
h2 {
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
}

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

/* Botões */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #146498, #631b7c);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(20, 100, 152, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(20, 100, 152, 0.5);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #146498;
  color: #146498;
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #146498;
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.1);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.navbar.scrolled .logo-main {
  color: #01948e;
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: #c6f8e3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.navbar.scrolled .logo-sub {
  color: #6c757d;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.6s ease;
}

/* Normal (navbar transparente) */
.navbar .logo-image {
  filter: none;
}

/* Após scroll (navbar branca) */
.navbar.scrolled .logo-image {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

/* Links / textos da navbar */
.logo-main,
.logo-sub,
.navbar a {
  transition: color 0.6s ease;
}

/* Estado inicial */
.logo-main {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  transition: color 0.6s ease, text-shadow 0.6s ease;
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: #c6f8e3;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  transition: color 0.6s ease, text-shadow 0.6s ease;
}

.navbar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin-left: 2rem;
}

/* Estado scrolled */
.navbar.scrolled .logo-main {
  color: #01948e;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.navbar.scrolled .logo-sub {
  color: #6c757d;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled a {
  color: #01948e;
}

/* Responsividade para a logo */
@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }

  .logo-main {
    font-size: 1.2rem;
  }

  .logo-sub {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 35px;
  }

  .logo-main {
    font-size: 1rem;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

  .logo {
    gap: 0.5rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-container {
    margin-top: 40px;
    padding: 1rem;
  }
}

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

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #01948e;
}

.nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.navbar.scrolled .nav-link {
  color: #2c3e50;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: #01948e;
  transform: translateY(-2px);
}

.cta-nav {
  background: linear-gradient(135deg, #146498, #631b7c);
  color: white !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 25px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(20, 100, 152, 0.3);
  transition: all 0.3s ease;
}

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

.cta-nav:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(1, 148, 142, 0.5);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1100; /* acima do menu */
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #01948f; /* verde água */
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

/* Ativo: anima o X */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Menu mobile */
.nav-links {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease-in-out;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #01948f 0%, #01c5b6 100%);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Links no mobile */
  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    transition: color 0.2s ease-in-out;
  }

  .nav-links a:hover {
    color: #f1f1f1;
  }
}

/* Menu Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    align-items: start;
    padding: 40px 20px;
    gap: 20px;
    transition: right 0.3s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/hero.png") center 40% / cover no-repeat;
  filter: blur(1px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(20, 100, 152, 0.4),
    rgba(99, 27, 124, 0.4)
  );
  backdrop-filter: blur(3px);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  /* margin-top: 180px;  🚫 remove */
  padding: 4rem 2rem; /* ✅ dá o respiro certo */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  animation: fadeInDown 1s ease;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  animation: fadeInDown 1.2s ease;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #01c5b6, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 1.4s ease;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.6s ease;
}

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

.hero-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-direction: column; /* empilha um abaixo do outro */
  align-items: center; /* mantém alinhado à esquerda */
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.8s ease;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #146498, #631b7c);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(20, 100, 152, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(20, 100, 152, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  animation: fadeInUp 2s ease;
}

.guarantee-icon {
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  height: 500px;
  animation: fadeInRight 2s ease;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 10%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.card-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 2.5s ease;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

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

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Responsivo para Hero e Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 1rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e9ecef;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar .nav-links.open {
    display: flex;
  }

  .navbar .nav-link {
    color: #2c3e50;
  }

  .hero {
    padding-top: 60px;
    min-height: 560px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 1rem;
    margin-top: 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    height: 300px;
  }

  .floating-card {
    padding: 1rem;
  }

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

/* Bloqueia scroll quando menu está aberto no mobile */
body.menu-open {
  overflow: hidden;
}

/* Seções */
section {
  padding: 4rem 2rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.callout {
  margin-top: 1.5rem;
  font-weight: bold;
  color: #01948e;
  font-size: 1.2rem;
}

.solucao {
  background: #fff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.solucao-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solucao-header {
  text-align: center;
  margin-bottom: 4rem;
}

.solucao-badge {
  display: inline-block;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.solucao h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.solucao-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

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

.solucao-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.solucao-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #01c5b6;
}

.solucao-card.featured {
  border: 2px solid #01948e;
  transform: scale(1.05);
  background: linear-gradient(135deg, #f0f9ff, #e6fffa);
}

.solucao-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 20px 0 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.card-icon-wrapper {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.card-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.solucao-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.solucao-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  background: linear-gradient(135deg, #f0f9ff, #f8f0ff);
  color: #146498;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #631b7c;
}

.solucao-process {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  text-align: center;
}

.solucao-process h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.process-step {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 250px;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  background: linear-gradient(135deg, #146498, #631b7c);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.process-step p {
  color: #6c757d;
  line-height: 1.5;
}

.process-arrow {
  font-size: 2rem;
  color: #01948e;
  font-weight: bold;
  animation: bounce 2s infinite;
}

.solucao-cta {
  background: linear-gradient(135deg, #01948e, #01c5b6);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solucao-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: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.solucao-cta h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.solucao-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-solucao {
  display: inline-block;
  background: white;
  color: #01948e;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-solucao:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsivo para solução */
@media (max-width: 768px) {
  .solucao {
    padding: 4rem 1rem;
  }

  .solucao h2 {
    font-size: 2.2rem;
  }

  .solucao-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solucao-card {
    padding: 2rem 1.5rem;
  }

  .solucao-card.featured {
    transform: none;
  }

  .solucao-card.featured:hover {
    transform: translateY(-10px);
  }

  .solucao-process {
    padding: 3rem 1.5rem;
  }

  .process-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .solucao-cta {
    padding: 2rem 1.5rem;
  }

  .solucao-cta h3 {
    font-size: 1.8rem;
  }
}

.problema {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.problema::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01948e, #01c5b6, #01948e);
}

.problema-container {
  max-width: 1200px;
  margin: 0 auto;
}

.problema-header {
  text-align: center;
  margin-bottom: 4rem;
}

.problema-badge {
  display: inline-block;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.problema h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.problema-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 500;
}

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

.problema-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(214, 40, 40, 0.1);
  position: relative;
  overflow: hidden;
}

.problema-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01948e, #01c5b6);
}

.problema-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.problema-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.problema-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card-stats {
  background: linear-gradient(135deg, #f0f9ff, #e6fffa);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid #01c5b6;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #01948e;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #01c5b6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.problema-cta {
  background: linear-gradient(135deg, #01948e, #01c5b6);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.problema-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: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.problema-cta h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.problema-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-problema {
  display: inline-block;
  background: white;
  color: #01948e;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-problema:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.problema-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.proof-item {
  text-align: center;
  position: relative;
}

.proof-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.proof-item img:hover {
  transform: scale(1.05);
}

.proof-label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.proof-arrow {
  font-size: 2rem;
  color: #01948e;
  font-weight: bold;
  animation: bounce 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

/* Responsivo */
@media (max-width: 768px) {
  .problema {
    padding: 4rem 1rem;
  }

  .problema h2 {
    font-size: 2.2rem;
  }

  .problema-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .problema-card {
    padding: 2rem 1.5rem;
  }

  .problema-cta {
    padding: 2rem 1.5rem;
  }

  .problema-cta h3 {
    font-size: 1.8rem;
  }

  .problema-proof {
    flex-direction: column;
    gap: 1.5rem;
  }

  .proof-arrow {
    transform: rotate(90deg);
  }

  .proof-item img {
    width: 150px;
    height: 120px;
  }
}

.beneficios {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 2rem;
  position: relative;
}

.beneficios::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01948e, #01c5b6, #01948e);
}

.beneficios-container {
  max-width: 1200px;
  margin: 0 auto;
}

.beneficios-header {
  text-align: center;
  margin-bottom: 4rem;
}

.beneficios-badge {
  display: inline-block;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.beneficios h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.beneficios-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

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

.beneficio-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #01c5b6;
}

.beneficio-card.featured {
  border: 2px solid #01948e;
  transform: scale(1.05);
  background: linear-gradient(135deg, #f0f9ff, #e6fffa);
}

.beneficio-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 20px 0 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.beneficio-icon {
  margin-bottom: 2rem;
}

.icon-wrapper {
  position: relative;
  display: inline-block;
}

.beneficio-icon .icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
}

.beneficio-icon .icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.beneficio-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.beneficio-card p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.beneficio-highlight {
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
}

.highlight-text {
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.beneficios-stats {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #01948e;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.beneficios-guarantee {
  background: linear-gradient(135deg, #01948e, #01c5b6);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.beneficios-guarantee::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: rotate 20s linear infinite;
}

.guarantee-content {
  position: relative;
  z-index: 2;
}

.beneficios-guarantee h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

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

.guarantee-badge {
  background: white;
  color: #01948e;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.badge-text {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Calculadora de ROI */
.calculadora {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 2rem;
  position: relative;
}

.calculadora::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #146498, #631b7c);
}

.calculadora-container {
  max-width: 1200px;
  margin: 0 auto;
}

.calculadora-header {
  text-align: center;
  margin-bottom: 4rem;
}

.calculadora-badge {
  display: inline-block;
  background: linear-gradient(135deg, #146498, #631b7c);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.calculadora h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.calculadora-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.calculadora-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.calculadora-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #146498;
  box-shadow: 0 0 0 3px rgba(20, 100, 152, 0.1);
}

.btn-calcular {
  background: linear-gradient(135deg, #146498, #631b7c);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-calcular:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 100, 152, 0.3);
}

.calculadora-resultado {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.resultado-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}

.resultado-valor {
  text-align: center;
  margin-bottom: 2rem;
}

.resultado-valor .valor {
  font-size: 3.5rem;
  font-weight: 900;
  color: #146498;
  display: block;
}

.resultado-valor .periodo {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 500;
}

.resultado-detalhes {
  border-top: 2px solid #e9ecef;
  padding-top: 2rem;
}

.detalhe-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.detalhe-label {
  color: #6c757d;
  font-weight: 500;
}

.detalhe-valor {
  font-weight: 700;
  color: #2c3e50;
}

.calculadora-cta {
  text-align: center;
  margin-top: 3rem;
}

.calculadora-cta p {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.btn-calculadora {
  display: inline-block;
  background: linear-gradient(135deg, #146498, #631b7c);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 100, 152, 0.2);
}

.btn-calculadora:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(20, 100, 152, 0.3);
}

@media (max-width: 768px) {
  .calculadora {
    padding: 4rem 1rem;
  }

  .calculadora h2 {
    font-size: 2.2rem;
  }

  .calculadora-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calculadora-form,
  .calculadora-resultado {
    padding: 2rem 1.5rem;
  }

  .resultado-valor .valor {
    font-size: 2.8rem;
  }
}

/* Responsivo para benefícios */
@media (max-width: 768px) {
  .beneficios {
    padding: 4rem 1rem;
  }

  .beneficios h2 {
    font-size: 2.2rem;
  }

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

  .beneficio-card {
    padding: 2rem 1.5rem;
  }

  .beneficio-card.featured {
    transform: none;
  }

  .beneficio-card.featured:hover {
    transform: translateY(-10px);
  }

  .beneficios-stats {
    padding: 2rem 1.5rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .beneficios-guarantee {
    padding: 2rem 1.5rem;
  }

  .beneficios-guarantee h3 {
    font-size: 1.8rem;
  }

  .guarantee-badge {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.social {
  background: #fff;
  padding: 6rem 2rem;
  position: relative;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-header {
  text-align: center;
  margin-bottom: 4rem;
}

.social-badge {
  display: inline-block;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.social h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.social-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #01c5b6;
}

.testimonial-card.featured {
  border: 2px solid #01948e;
  transform: scale(1.05);
  background: linear-gradient(135deg, #f0f9ff, #e6fffa);
}

.testimonial-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.quote-icon {
  font-size: 4rem;
  color: #01948e;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.stars {
  font-size: 1.2rem;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #01948e;
}

.social-stats {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-bottom: 3rem;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #01948e;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-cta {
  background: linear-gradient(135deg, #01948e, #01c5b6);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-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: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.social-cta h3 {
  color: white;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.social-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-social {
  display: inline-block;
  background: white;
  color: #01948e;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-social:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsivo para prova social */
@media (max-width: 768px) {
  .social {
    padding: 4rem 1rem;
  }

  .social h2 {
    font-size: 2.2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card.featured {
    transform: none;
  }

  .testimonial-card.featured:hover {
    transform: translateY(-10px);
  }

  .social-stats {
    padding: 2rem 1.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .social-cta {
    padding: 2rem 1.5rem;
  }

  .social-cta h3 {
    font-size: 1.8rem;
  }
}
.cta-main {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 2rem;
  position: relative;
}

.cta-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01948e, #01c5b6, #01948e);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.cta-main h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.oferta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.oferta-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.oferta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #01c5b6;
}

.oferta-card.principal {
  border: 2px solid #01948e;
  transform: scale(1.05);
  background: linear-gradient(135deg, #f0f9ff, #e6fffa);
}

.oferta-card.principal:hover {
  transform: translateY(-10px) scale(1.05);
}

.oferta-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 20px 0 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.oferta-header {
  text-align: center;
  margin-bottom: 2rem;
}

.oferta-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.oferta-desc {
  color: #6c757d;
  font-size: 1rem;
}

.oferta-preco {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.preco-antigo {
  font-size: 1rem;
  color: #6c757d;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.preco-atual {
  font-size: 2.5rem;
  font-weight: 900;
  color: #01948e;
  margin-bottom: 0.5rem;
}

.desconto-badge {
  background: linear-gradient(135deg, #d62828, #f77f00);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
}

.oferta-beneficios {
  margin-bottom: 2rem;
}

.oferta-beneficios h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.oferta-beneficios ul {
  list-style: none;
  padding: 0;
}

.oferta-beneficios li {
  padding: 0.5rem 0;
  color: #6c757d;
  font-size: 1rem;
}

.oferta-garantia {
  background: linear-gradient(135deg, #f0f9ff, #e6fffa);
  border: 1px solid #01c5b6;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.garantia-icon {
  font-size: 1.2rem;
}

.garantia-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #01948e;
}

.btn-oferta-principal {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(1, 148, 142, 0.3);
}

.btn-oferta-principal:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(1, 148, 142, 0.5);
}

.btn-oferta-secundaria {
  display: block;
  width: 100%;
  background: white;
  color: #01948e;
  border: 2px solid #01948e;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-oferta-secundaria:hover {
  background: #01948e;
  color: white;
  transform: translateY(-3px);
}

.cta-urgencia {
  background: linear-gradient(135deg, #d62828, #f77f00);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.urgencia-content h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.urgencia-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.tempo {
  text-align: center;
}

.numero {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-final {
  background: linear-gradient(135deg, #01948e, #01c5b6);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.cta-final h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-cta-final {
  display: inline-block;
  background: white;
  color: #01948e;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-final:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fechamento {
  background: #111;
  color: #fff;
  padding: 4rem 2rem;
}

.fechamento-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fechamento-content {
  text-align: center;
  margin-bottom: 3rem;
}

.fechamento h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.fechamento-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.btn-fechamento {
  display: inline-block;
  background: linear-gradient(135deg, #01948e, #01c5b6);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(1, 148, 142, 0.3);
}

.btn-fechamento:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(1, 148, 142, 0.5);
}

.fechamento-info {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.fechamento-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.contato-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contato-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsivo para CTA e Oferta */
@media (max-width: 768px) {
  .hero-container {
    margin-top: 320px;
    font-size: 0.7rem;
    gap: 1rem;
  }

  .hero-badge {
    padding: 0.1rem 0.6rem;
  }

  .badge-text,
  .badge-icon {
    font-size: 0.9rem;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    margin-bottom: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    margin-bottom: 1.2rem;
  }

  .btn-hero-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }

  .btn-hero-secondary {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }

  .scroll-indicator {
    align-items: end;
    margin-right: -250px;
    gap: 0.1rem;
    font-size: 0.8rem;
  }

  .cta-main {
    padding: 4rem 1rem;
  }

  .cta-main h2 {
    font-size: 2.2rem;
  }

  .oferta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .oferta-card {
    padding: 2rem 1.5rem;
  }

  .oferta-card.principal {
    transform: none;
  }

  .oferta-card.principal:hover {
    transform: translateY(-10px);
  }

  .preco-atual {
    font-size: 2rem;
  }

  .cta-urgencia {
    padding: 2rem 1.5rem;
  }

  .urgencia-content h3 {
    font-size: 1.6rem;
  }

  .contador {
    gap: 1rem;
  }

  .numero {
    font-size: 2.5rem;
  }

  .cta-final {
    padding: 2rem 1.5rem;
  }

  .cta-final h3 {
    font-size: 1.8rem;
  }

  .fechamento {
    padding: 3rem 1rem;
  }

  .fechamento h2 {
    font-size: 2rem;
  }

  .contato-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Animações keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
