/* 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: #2E8B57;
  color: white;
}

.btn-primary:hover {
  background-color: #1a753f;
}

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

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

.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: #2E8B57;
}

.logo span {
  color: #3CB371;
}

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

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

.nav-menu a:hover {
  color: #2E8B57;
}

/* Hero Section */
.hero {
  padding: 20px 0 0;
  background: linear-gradient(to bottom, #ffffff, #f8fcf8);
  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: #2E8B57;
  position: relative;
  display: inline-block;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(46, 139, 87, 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(46, 139, 87, 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, #f9fdf9, #f0f8f0);
  background-attachment: fixed;
}

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

.feature-item i {
  color: #2E8B57;
  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(46, 139, 87, 0.1), rgba(60, 179, 113, 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: #2E8B57;
  background: rgba(46, 139, 87, 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: #2E8B57;
}

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

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

.feature-banner {
  background: linear-gradient(135deg, #0d3a23, #1a753f);
  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;
}

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

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

.banner-content h3 {
  position: relative;
  display: inline-block;
}

.banner-content h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #10b981, #34d399);
  opacity: 0.8;
}

/* Animação da setinha no botão */
.banner-button i {
  display: inline-block;
  margin-left: 8px;
  animation: arrowMove 1.2s ease-in-out infinite;
}

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

.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;
}


@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: #f8fcf8;
}

.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: #1a3b2a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.ntr-section-subtitle {
  font-size: 1.1rem;
  color: #5a7c6c;
  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 #e0f0e8;
  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(46, 139, 87, 0.15);
}

.ntr-plan-featured {
  border: 2px solid #2E8B57;
  box-shadow: 0 5px 25px rgba(46, 139, 87, 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: #2E8B57;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(46, 139, 87, 0.3);
}

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

.ntr-plan-name {
  font-size: 1.5rem;
  color: #1a3b2a;
  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: #5a7c6c;
  margin-top: 0.3rem;
}

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

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

.ntr-billing-info {
  font-size: 0.85rem;
  color: #7a9c8c;
  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: #3a5b4a;
  font-size: 0.95rem;
}

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

.ntr-plan-featured .ntr-plan-features li {
  color: #1a3b2a;
  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: #e8f5ee;
  color: #2E8B57;
  border: 1px solid #c8e5d5;
}

.ntr-plan-btn:hover {
  background: #d8f0e3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(46, 139, 87, 0.2);
}

.ntr-featured-btn {
  background: #2E8B57;
  color: white;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.ntr-featured-btn:hover {
  background: #247245;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.ntr-plan-footer {
  text-align: center;
  color: #5a7c6c;
  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 */

/* Container para alinhar texto + botão */
.cta-nutria-section {
  background: #f0fdf4; /* verde bem claro */
  padding: 4rem 2rem;
}

/* Container */
.cta-nutria-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Texto */
.cta-nutria-text {
  flex: 1;
  min-width: 300px;
}

.cta-nutria-title {
  font-size: 2rem;
  font-weight: 700;
  color: #065f46; /* verde escuro */
  margin-bottom: 1rem;
}

.cta-nutria-title span {
  color: #10b981; /* destaque verde */
}

.cta-nutria-description {
  font-size: 1.125rem;
  color: #065f46;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-nutria-button {
  background: #10b981; /* verde médio */
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-nutria-button:hover {
  background: #059669; /* verde mais escuro no hover */
}

.cta-nutria-button .nutria-button-icon {
  animation: arrow-move 1.2s infinite;
}

@keyframes arrow-move {
  0% { transform: translateX(0); }
  50% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.cta-nutria-small {
  font-size: 0.875rem;
  color: #047857;
  margin-top: 0.75rem;
}

/* Imagem circular */
.cta-nutria-image-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

.cta-nutria-circle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d1fae5; /* verde pastel */
  border-radius: 50%;
  z-index: 1;
}

/* Círculo decorativo extra */
.cta-nutria-circle-decor {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(16, 185, 129, 0.2); 
  border-radius: 50%;
  z-index: 0;
}

.cta-nutria-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-nutria-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #01754b, #2E8B57);
}

.cta-nutria-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-nutria-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-nutria-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background-color: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.cta-nutria-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-nutria-title {
    color: #1b4332;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta-nutria-description {
    color: #2d6a4f;
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-nutria-button {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-nutria-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-nutria-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(27, 67, 50, 0.2);
}

.cta-nutria-button:hover::before {
    opacity: 1;
}

.cta-nutria-button:active {
    transform: translateY(0);
}

.nutria-decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(64, 145, 108, 0.15);
    z-index: 1;
}

.nutria-circle-1 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    right: 15%;
}

.nutria-circle-2 {
    width: 50px;
    height: 50px;
    top: 100px;
    left: 10%;
}

.nutria-circle-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 20%;
    background: rgba(27, 67, 50, 0.2);
}

.nutria-button-icon {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .cta-nutria-title {
        font-size: 2.2rem;
    }
    
    .cta-nutria-description {
        font-size: 1.1rem;
    }
    
    .cta-nutria-button {
        padding: 16px 40px;
    }
    
    .nutria-decorative-circle {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-nutria-section {
        padding: 70px 15px;
    }
    
    .cta-nutria-title {
        font-size: 1.8rem;
    }
    
    .cta-nutria-description {
        font-size: 1rem;
    }
}

/* Modal styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 800px;
}

.close-modal {
  position: absolute;
  top: -10px;
  right: 0;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 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, #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: #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: #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: #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: #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: #a3e6cd;
  color: #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);
}

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

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

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

/* Estilos para o modal de vídeo */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

.video-modal .modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
}

.video-modal .close-modal {
  position: absolute;
  right: -30px;
  top: -30px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s;
}

.video-modal .close-modal:hover {
  color: #2E8B57;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Animação para o modal */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.video-modal.active {
  display: block;
  animation: fadeIn 0.3s;
}

/*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;
  }

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

@media (max-width: 480px) {
  .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;
  }
}