:root {
  --primary-color: #1d2849;
  --secondary-color: #3a3939;
  --background-color: #ede7dc;
  --accent-color: #decaaf;
  --card-color: #bbc2cc;
  --text-color: #3a3939;
  font-family: the-seasons, sans-serif;
  font-style: normal;
  font-weight: 300;
}

body {
  font-family: "The Seasons", serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
}

section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visivel {
  opacity: 1;
  transform: translateY(0);
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.banner-text {
  position: absolute;
  z-index: 1;
  color: #decaaf;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 50px;
  height: 40px;
}

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

.pulse-animation {
  animation: pulse 1s ease-in-out;
}

/* Service Detail Cards */
.service-detail-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.service-header {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
}

.service-icon {
  font-size: 2.5rem;
  margin-right: 20px;
  color: var(--accent-color);
}

.service-title {
  font-size: 1.8rem;
  font-weight: bold;
}

.service-content {
  padding: 30px;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.service-process {
  margin-top: 30px;
}

.process-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 5px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.process-step {
  flex: 1;
  min-width: 250px;
  background: var(--background-color);
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-title {
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 10px;
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-benefits {
  margin-top: 30px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 3px;
}

.benefit-text {
  font-size: 1rem;
}

.service-cta {
  background: var(--accent-color);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
}

.service-cta-text {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

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

  .benefits-list {
    grid-template-columns: 1fr;
  }
}
