/* Reset & Base Styles */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #4BAEDB;
  color: white;
}

.btn-primary:hover {
  background-color: #3798C5;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #4BAEDB;
  color: #4BAEDB;
}

.btn-outline:hover {
  background-color: #f0faff;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4BAEDB;
}

.logo span {
  color: #6FC8EA;
}

.nav-menu ul {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #4BAEDB;
}

/* Hero Section */
.hero {
  padding: 20px 0 0;
  background: linear-gradient(to bottom, #ffffff, #f6fbff);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  padding-bottom: 190px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #222;
  font-weight: 700;
}

.hero-title-line {
  display: block;
}

.hero-highlight {
  color: #4BAEDB;
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(75, 174, 219, 0.2);
  z-index: -1;
  border-radius: 3px;
  transform: skewX(-15deg);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 35px;
  color: #555;
  max-width: 90%;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-hero.btn-primary {
  padding: 15px 30px;
  box-shadow: 0 10px 20px rgba(75, 174, 219, 0.3);
}

.btn-hero.btn-outline {
  padding: 15px 25px;
  border-width: 2px;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
  transform: translateX(5px);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

/* Features */
.features {
  background: linear-gradient(to bottom, #f6fbff, #f0faff);
  background-attachment: fixed;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #555;
}

.feature-item i {
  color: #4BAEDB;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-image {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.image-decoration {
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, rgba(75, 174, 219, 0.1), rgba(111, 200, 234, 0.05));
  border-radius: 20px;
  top: 5%;
  left: 5%;
  z-index: 1;
  transform: perspective(1000px) rotateY(-10deg);
}

.stats-card {
  position: absolute;
  bottom: 50px;
  left: -30px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.stats-icon {
  font-size: 2rem;
  color: #4BAEDB;
  background: rgba(75, 174, 219, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}

.stats-label {
  font-size: 0.9rem;
  color: #666;
}

.review-card {
  position: absolute;
  top: 50px;
  right: -20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  z-index: 3;
  animation: float 5s ease-in-out infinite 1s;
}

.stars {
  color: #FFC107;
  margin-bottom: 10px;
}

.review-content p {
  font-style: italic;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author span {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}


.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}


/* Features Section */
.features {
  padding: 60px 0;
  padding-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #4682B4;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
}

.feature-banner {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  text-align: center;
  padding: 60px 40px;
  border-radius: 25px;
  max-width: 1000px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  margin: 0 auto 80px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

/* Container para alinhar texto + botão */
.cta-wrapper {
  text-align: center;
}

/* Texto de destaque */
.free-callout {
  font-size: 0.95rem;
  color: rgb(255, 255, 255);
  /* Verde para dar sensação positiva */
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.8rem;
  background-color: rgba(40, 142, 167, 0.1);
  /* Fundo verde bem suave */
  border-radius: 4px;
  position: relative;
}

/* Adiciona um pequeno ícone antes do texto */
.free-callout::before {
  content: "✓";
  margin-right: 5px;
  font-weight: bold;
}

/* Efeito sutil ao passar o mouse */
.free-callout:hover {
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.feature-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.feature-banner h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 0.8s ease;
}

.banner-description {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease 0.3s both;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px auto;
  max-width: 900px;
}

.step {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 0.8s ease both;
}

.step:nth-child(1) {
  animation-delay: 0.4s;
}

.step:nth-child(2) {
  animation-delay: 0.6s;
}

.step:nth-child(3) {
  animation-delay: 0.8s;
}

.step:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
  font-size: 1.8rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.step-content h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.banner-button {
  background: rgba(255, 255, 255, 0.9);
  color: #3B82F6;
  /* Azul médio (substitui #1a753f) */
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  animation: fadeIn 1s ease 1s both;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.banner-button:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #1E3A8A;
}

.banner-button i {
  transition: transform 0.3s ease;
}

.banner-button:hover i {
  transform: translateX(5px);
}

.banner-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 15s infinite linear;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  animation-delay: 0.5s;
  animation-direction: reverse;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  animation-delay: 1s;
  animation-duration: 20s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, 10px) rotate(5deg);
  }

  50% {
    transform: translate(0, 20px) rotate(0deg);
  }

  75% {
    transform: translate(-10px, 10px) rotate(-5deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Seção de Planos */


.ntr-plans {
  padding: 2rem 0;
  background: #f8fafc;
}

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

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

.ntr-section-title {
  font-size: 2.5rem;
  color: #1E3A8A;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.ntr-section-subtitle {
  font-size: 1.1rem;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto;
}

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

.ntr-plan-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E7FF;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ntr-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.ntr-plan-featured {
  border: 2px solid #3B82F6;/ box-shadow: 0 5px 25px rgba(59, 130, 246, 0.2);
  transform: scale(1.02);
}

.ntr-plan-featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.ntr-plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #2563EB;
  /* Azul mais intenso (substitui #2E8B57) */
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  /* Azul mais intenso com transparência */
}

.ntr-plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E0E7FF;
}

.ntr-plan-name {
  font-size: 1.5rem;
  color: #1E3A8A;
  margin-bottom: 1rem;
  font-weight: 600;
}

.ntr-plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.ntr-currency {
  font-size: 1.2rem;
  color: #64748B;
  margin-top: 0.3rem;
}

.ntr-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2563EB;
  line-height: 1;
}

.ntr-period {
  font-size: 1rem;
  color: #64748B;
  margin-top: 0.8rem;
}

.ntr-billing-info {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 0.5rem;
}

.ntr-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.ntr-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #334155;
  font-size: 0.95rem;
}

.ntr-plan-features i {
  color: #3B82F6;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.ntr-plan-featured .ntr-plan-features li {
  color: #1E3A8A;
  font-weight: 500;
}

.ntr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.ntr-plan-btn {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.ntr-plan-btn:hover {
  background: #DBEAFE;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.ntr-featured-btn {
  background: #2563EB;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.ntr-featured-btn:hover {
  background: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.ntr-plan-footer {
  text-align: center;
  color: #64748B;
  font-size: 0.9rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .ntr-plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .ntr-plan-card {
    padding: 1.5rem;
  }

  .ntr-plan-featured {
    transform: none;
  }

  .ntr-plan-featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .ntr-section-title {
    font-size: 2rem;
  }

  .ntr-amount {
    font-size: 2.5rem;
  }
}

/* API Key Section */
.ntr-api-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f8fafc, #f0f7ff);
  /* Azul claro gradient (substitui #f9fdf9, #f0f8f0) */
  position: relative;
}

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

.ntr-api-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
  align-items: center;
}

.ntr-api-visual {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.9375rem 2.5rem rgba(0, 0, 0, 0.1);
}

.ntr-api-image {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.ntr-api-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.625rem 0.9375rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: #3B82F6;
  /* Azul médio (substitui #2E8B57) */
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.ntr-api-badge i {
  font-size: 1.2rem;
}

.ntr-api-content {
  max-width: 32.5rem;
}

.ntr-api-title {
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 1.5625rem;
  color: #222;
  font-weight: 700;
}

.ntr-api-highlight {
  color: #3B82F6;
  /* Azul médio (substitui #2E8B57) */
  position: relative;
}

.ntr-api-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: rgba(59, 130, 246, 0.2);
  /* Azul médio com transparência (substitui rgba(46, 139, 87, 0.2)) */
  z-index: -1;
  border-radius: 0.25rem;
}

.ntr-api-steps {
  margin: 2.5rem 0;
}

.ntr-api-step {
  display: flex;
  gap: 0.9375rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid #e0f2ff;
  /* Azul claro (substitui #e8f5e9) */
}

.ntr-api-step:last-child {
  border-bottom: none;
}

.ntr-step-marker {
  width: 2rem;
  height: 2rem;
  background: #EFF6FF;
  /* Azul muito claro (substitui #e6f7e9) */
  color: #3B82F6;
  /* Azul médio (substitui #2E8B57) */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.1875rem;
  font-size: 0.875rem;
}

.ntr-step-info {
  flex: 1;
}

.ntr-step-title {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 0.3125rem;
  font-weight: 600;
}

.ntr-step-desc {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.ntr-api-features {
  margin-bottom: 1.875rem;
}

.ntr-features-title {
  font-size: 1.2rem;
  margin-bottom: 0.9375rem;
  color: #444;
  font-weight: 600;
}

.ntr-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

.ntr-feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #555;
  font-size: 0.9375rem;
}

.ntr-feature-icon {
  color: #3B82F6;
  /* Azul médio (substitui #2E8B57) */
  font-size: 0.875rem;
}

.ntr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.ntr-btn-api {
  background: #3B82F6;
  /* Azul médio (substitui #2E8B57) */
  color: white;
  box-shadow: 0 0.25rem 0.9375rem rgba(59, 130, 246, 0.3);
  /* Azul médio com transparência */
}

.ntr-btn-api:hover {
  background: #2563EB;
  /* Azul mais intenso (substitui #247245) */
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.25rem rgba(59, 130, 246, 0.4);
  /* Azul médio com transparência */
}

.ntr-btn-icon {
  transition: transform 0.3s ease;
}

.ntr-btn-api:hover .ntr-btn-icon {
  transform: translateX(0.3125rem);
}

/* Responsividade */

@media (max-width: 64rem) {
  .ntr-api-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 48rem) {
  .ntr-api-grid {
    grid-template-columns: 1fr;
  }

  .ntr-api-content {
    max-width: 100%;
  }

  .ntr-api-visual {
    max-width: 37.5rem;
    margin: 0 auto;
  }
}

@media (max-width: 30rem) {
  .ntr-api-section {
    padding: 3.75rem 0;
  }

  .ntr-api-title {
    font-size: 1.8rem;
  }

  .ntr-api-step {
    padding: 0.9375rem 0;
  }
}

/* Footer */
/* Footer Modernizado */
.ntr-footer {
  background: linear-gradient(135deg, #1E3A8A, #3B82F6);
  /* Azul escuro para azul médio (substitui #0d3a23, #1a753f) */
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

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

.ntr-footer-col {
  margin-bottom: 2rem;
}

.ntr-footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.ntr-footer-logo span {
  color: #93C5FD;
  /* Azul claro (substitui #a3e6cd) */
}

.ntr-footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ntr-footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.ntr-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #93C5FD;
  /* Azul claro (substitui #a3e6cd) */
}

.ntr-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.ntr-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ntr-footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.ntr-footer-links i {
  font-size: 0.7rem;
  color: #93C5FD;
  /* Azul claro (substitui #a3e6cd) */
}

.ntr-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.ntr-footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.ntr-footer-contact i {
  color: #93C5FD;
  /* Azul claro (substitui #a3e6cd) */
  width: 1.2rem;
}

.ntr-social-media {
  margin-top: 2rem;
}

.ntr-social-media h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.ntr-social-icons {
  display: flex;
  gap: 1rem;
}

.ntr-social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.ntr-social-icons a:hover {
  background: #93C5FD;
  /* Azul claro (substitui #a3e6cd) */
  color: #1E3A8A;
  /* Azul escuro (substitui #1a753f) */
  transform: translateY(-3px);
}

.ntr-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.ntr-footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.ntr-footer-copyright strong {
  color: white;
  font-weight: 600;
}

.ntr-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.ntr-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ntr-footer-legal a:hover {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  transition: underline 0.3s ease;
}

.ntr-footer-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #93C5FD, #3B82F6);
  opacity: 0.3;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}

/*hotmart*/
.hotmart-overlay,
.hotmart-checkout-modal,
#hotmart-checkout-modal,
#hotmart-overlay,
.hotmart-modal,
.hotmart-checkout-modal__overlay,
.custom-element__lightbox-modal {
  z-index: 999999 !important;
}

.custom-element__lightbox-overlay {
  z-index: 999998 !important;
}

/* Responsividade */
@media (max-width: 768px) {
  .ntr-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 15px;
    right: 15px;
  }

  .ntr-footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
    bottom: 10px;
    right: 10px;
  }

  .ntr-footer-grid {
    grid-template-columns: 1fr;
  }

  .ntr-footer-col {
    margin-bottom: 2.5rem;
  }

  .ntr-footer-col:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-image {
    min-height: 450px;
  }
}

/* Responsive Design */


@media (max-width: 992px) {

  .api-content {
    flex-direction: column-reverse;
  }

  .api-text,
  .api-image {
    width: 100%;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text {
    padding-bottom: 40px;
    text-align: center;
  }

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

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

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

  .hero-image {
    min-height: auto;
    margin-bottom: 80px;
  }

  .stats-card {
    left: 20px;
    bottom: -50px;
  }

  .review-card {
    right: 20px;
    top: -50px;
  }
}


@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text,
  .hero-image {
    width: 100%;
    text-align: center;
  }

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

  .nav-menu {
    display: none;
  }

  .steps-container {
    flex-direction: column;
  }

  .feature-banner {
    padding: 40px 20px;
    margin-bottom: 50px;
  }

  .feature-banner h3 {
    font-size: 1.8rem;
  }

  .banner-description {
    font-size: 1rem;
  }

  .steps-container {
    flex-direction: column;
  }

  .feature-banner {
    padding: 40px 20px;
    margin-bottom: 50px;
  }

  .feature-banner h3 {
    font-size: 1.8rem;
  }

  .banner-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .stats-card,
  .review-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 20px auto;
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .api-text h2 {
    font-size: 1.8rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }
}