/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #e2e8f0; 
  /* background: black;
  background-image: linear-gradient(45deg, #335d9700, #2d077130, #ffffff00, #ffffff00, #ffffff00, #ffffff00, #2d077130, #2d077196) !important; */
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8); /* Fundo semi-transparente para harmonizar com o body */
  z-index: 1000;
  backdrop-filter: blur(5px); /* Efeito de desfoque para modernidade */
}

.navbar {
  padding: 15px;
}

.navbar-brand img {
  height: 30px;
  margin: 1px 20px;
}

.bg-light {
  background-color: transparent !important;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 60px); /* Ajustado para o header fixo */
  padding: 100px 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 500px; /* Ajustado para equilíbrio */
  padding: 40px;
  z-index: 2;
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-size: 4rem; /* Aumentado para impacto */
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff; /* Branco puro para destaque */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-family: 'Caveat', cursive;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #d1d5db; /* Cinza claro para suavidade */
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e5e7eb;
  line-height: 1.9;
}

.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background-color: #22d3ee; /* Ciano vibrante para destaque */
  color: #1e293b; /* Texto escuro para contraste */
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(34, 211, 238, 0.4);
}

.cta-button:hover {
  background-color: #06b6d4; /* Ciano mais escuro */
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(34, 211, 238, 0.6);
}

.hero-image {
  flex: 1;
  max-width: 700px; /* Aumentado para maior presença */
  padding: 40px;
  position: relative;
  z-index: 1;
  animation: fadeInRight 1s ease-out;
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /*background: rgba(255, 255, 255, 0.1); /* Fundo leve para integrar ao gradiente */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: imageFadeIn 1.2s ease-in-out;
}

.responsive-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.responsive-image:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Features Section */
.features {
  padding: 120px 20px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff; /* Branco para contraste */
  letter-spacing: -0.03em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #00000000; /* Fundo escuro semi-transparente */
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: inset 0px 0px 0px 1px #fff;
    border-radius: 9px;
}

.feature-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); */
}

.feature-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  /*color: #22d3ee; /* Ciano para destaque */
}

.feature-card p {
  font-size: 1.1rem;
  color: #d1d5db; /* Cinza claro */
  line-height: 1.8;
}

/* Plans Section */
.plans {
  padding: 120px 20px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.plan-card {
  background: rgba(0, 0, 0, 0); /* Fundo escuro semi-transparente */
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: inset 0px 0px 0px 1px #fff;
    border-radius: 9px;

}

.plan-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5); */
}

.plan-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: 'Caveat', cursive;
}

.plan-description {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #d1d5db;
  line-height: 1.8;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.plan-features li {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.plan-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #22d3ee; /* Ciano para consistência */
  font-weight: bold;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.footer p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Caveat Font Class */
.caveat-font {
  font-family: 'Caveat', cursive !important;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

/* Responsive Classes */
.mobile {
  display: none;
}

.desk {
  display: block;
}

@media only screen and (max-width: 600px) {
  .mobile {
    display: block;
  }
  .desk {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 15px;
  }

  .hero-content {
    max-width: 100%;
    padding: 20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-image {
    max-width: 100%;
    padding: 20px;
  }

  .image-wrapper {
    border-radius: 16px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .feature-card {
    padding: 30px;
  }

  .plan-card {
    padding: 35px;
  }
}

/* Animations */
@keyframes imageFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}