:root {
  --primary: #08418e;
  --secondary: #2cc6b6;
  --dark: #1a2e4d;
  --light: #f4f7fa;
  --white: #ffffff;
  --text-color: #333;
  --text-light: #666;
}

body {
  background-color: var(--light);
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--dark);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  overflow: hidden;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Placeholder para imagem de fundo */
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.hero h1 {
  color: #FFFFFF;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.9;
}

.btn-hero-cta {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  margin-top: 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta:hover {
  background-color: #24a597;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.scroll-indicator::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  animation: scrollAnimation 1.5s infinite ease-in-out;
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(5px);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(5px);
    opacity: 1;
  }
}
/* Features */
.features {
  background-color: var(--white);
  padding: 80px 0;
}

.features .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  color: var(--primary);
}

.feature-item {
  margin-bottom: 50px;
}

.feature-content {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.feature-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 2.8rem;
  padding: 20px;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-content h5 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-content small {
  display: block;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
}

.feature-image {
  text-align: center;
}

.feature-image img {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  height: auto;
}

.testimonials {
  background-color: var(--light);
  padding: 80px 0;
}

.testimonials .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  color: var(--primary);
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  text-align: center;
  height: 100%;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-light);
}

.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid var(--secondary);
}

.testimonial-card .author-name {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--dark);
}

.testimonial-card .author-title {
  font-size: 0.9rem;
  color: var(--text-light);
}

.logos-section {
  background-color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.logos-section .section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--primary);
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.logos-container img {
  max-height: 50px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logos-container img:hover {
  opacity: 1;
}

/* Form */
.form-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 80px 0;
}

.form-section .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
}

.form-section p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.form-area {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-label {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-control {
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ced4da;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.25rem rgba(44, 198, 182, 0.25);
}

.input-group-text {
  background-color: var(--white);
  color: var(--primary);
  border-radius: 10px 0 0 10px;
  border-right: none;
  padding: 0.9rem 1.2rem;
}

.form-control:focus + .input-group-text {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.25rem rgba(44, 198, 182, 0.25);
  z-index: 3;
}

.btn-submit-cta {
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-submit-cta:hover {
  background-color: #24a597;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.6);
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

footer a:hover {
  color: var(--secondary);
}

/* Responsividade */
@media (max-width: 991.98px) {
  .hero {
    padding: 80px 1rem;
    height: auto;
  }
  .feature-item {
    margin-bottom: 40px;
  }
  .feature-image {
    margin-top: 30px;
  }
  .form-area {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  /* Celulares */
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn-hero-cta,
  .btn-submit-cta {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  .features .section-title,
  .testimonials .section-title,
  .logos-section .section-title,
  .form-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .feature-content {
    padding: 30px;
  }
  .feature-icon {
    font-size: 2rem;
    padding: 15px;
  }
  .feature-content h5 {
    font-size: 1.3rem;
  }
  .testimonial-card {
    padding: 30px;
  }
}
@media (max-width: 575.98px) {
  .form-area {
    padding: 20px;
  }
  .input-group-text {
    padding: 0.75rem;
  }
}
