/* ===========================
   RESET E BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f6f8fa;
  color: #333;
  line-height: 1.6;
}

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

/* ===========================
   NAVBAR
=========================== */
.navbar {
  background-color: rgba(15, 68, 156, 0.9);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: saturate(180%) blur(8px);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links li a {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #f7ea24;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #f7ea24;
}

.nav-links li a:hover::after {
  width: 100%;
}
/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 70px;
  padding: 0 20px 140px;

  background: linear-gradient(rgba(15, 68, 156, 0.6), rgba(0, 141, 210, 0.6)),
              url('https://images.unsplash.com/photo-1580256081112-e49377338b7f?w=1200') no-repeat center center/cover;

  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  z-index: 2;
  animation: fadeInUp 1.5s ease forwards;
}

.hero-text {
  max-width: 800px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: slideDown 1.2s ease forwards;
}

.hero-text h1 .highlight {
  color: #f7ea24;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  animation: fadeIn 2s ease forwards;
}

/* Novo botão com estilo mais forte */
.btn-solicitar {
  display: inline-block;
  background-color: #f7ea24;
  color: #0f449c;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.btn-solicitar:hover {
  background-color: #fff200;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===========================
   WAVE
=========================== */
.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  line-height: 0;
  z-index: 0;
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.wave-bottom path {
  fill: #ffffff;
}

/* ===========================
   Espaçamento entre seções
=========================== */
section + section {
  padding-top: 100px;
}


/* SERVIÇOS */
.services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9faff, #e3f0ff);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #004a80;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #008dd2;
  margin: 12px auto 0;
  border-radius: 2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  padding: 30px 25px 40px;
  border-radius: 20px;
  box-shadow:
    0 8px 20px rgba(0, 141, 210, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow:
    0 20px 40px rgba(0, 141, 210, 0.3),
    0 6px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  background: linear-gradient(135deg, #0096ff, #005f9e);
  padding: 20px;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 141, 210, 0.3);
  transition: background 0.3s ease;
}

.card:hover .icon-wrapper {
  background: linear-gradient(135deg, #005f9e, #0096ff);
  box-shadow: 0 12px 30px rgba(0, 141, 210, 0.5);
}

.card h3 {
  font-size: 1.5rem;
  color: #003554;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  max-width: 280px;
}

.about {
  position: relative;
  padding: 80px 40px 100px;
  background-color: #fff;
  border-radius: 24px;
  margin-top: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 2;
  background-image: url('images/bg-cleaning.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #0f449c;
}

.about-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  opacity: 0.85;
  z-index: 1;
  border-radius: 24px;
}

.about-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  text-align: left;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0f449c;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

/* Cards - horizontal scroll */
.about-cards {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.about-cards:active {
  cursor: grabbing;
}

.about-card {
  flex: 0 0 250px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-card i {
  font-size: 2rem;
  color: #0f449c;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #0f449c;
}

.about-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

/* Remove scrollbar padrão */
.about-cards::-webkit-scrollbar {
  display: none;
}
.about-cards {
  -ms-overflow-style: none;  /* IE e Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Contadores */
.about-counters {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 60px;
  flex-wrap: wrap;
  z-index: 3;
}

.counter {
  text-align: center;
  flex: 0 0 120px;
}

.counter .icon {
  font-size: 2.4rem;
  color: #0f449c;
}

.counter .count {
  font-size: 2rem;
  color: #0f449c;
  font-weight: 700;
  margin: 10px 0 6px;
}

.counter p {
  color: #0f449c;
  font-weight: 600;
  font-size: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-cards {
    gap: 15px;
  }

  .about-card {
    flex: 0 0 220px;
    padding: 15px 20px;
  }

  .about-card h3 {
    font-size: 1.1rem;
  }

  .about-card p {
    font-size: 0.9rem;
  }

  .counter {
    flex: 0 0 100px;
  }

  .counter .icon {
    font-size: 2rem;
  }

  .counter .count {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-card {
    flex: 0 0 180px;
  }
}

/* ===========================
   FORMULÁRIO
=========================== */
.quote {
  background: #fff;
  padding: 60px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 600;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #ddd;
  transition: border-color 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #0f449c;
  outline: none;
}

form button {
  margin-top: 25px;
  width: 100%;
}
/* ===========================
   TESTIMONIALS STYLING
=========================== */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(to right, #f9f9f9, #e9f5ff);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #003f5c;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}

.testimonial {
  background: white;
  padding: 30px 25px;
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-style: italic;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial p {
  font-size: 1rem;
  color: #333;
}

.testimonial .stars {
  font-size: 1.2rem;
  color: #f5a623; /* golden stars */
  margin: 10px 0;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #008dd2;
  font-size: 0.9rem;
}
/* ===========================
   CONTACT & BOOKING COMBINED
=========================== */
.contact-booking {
  padding: 80px 0;
  background: linear-gradient(to right, #fefefe, #eef7ff);
  border-radius: 12px;
  text-align: center;
}

.contact-booking .section-title {
  font-size: 2.5rem;
  color: #003f5c;
  margin-bottom: 50px;
  font-weight: 700;
}

.contact-booking-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  align-items: flex-start;
  text-align: left;
}

.contact-info,
.booking-form {
  flex: 1 1 400px;
  max-width: 500px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.contact-info a {
  color: #0f449c;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Booking Form Styles */
.booking-form h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #003f5c;
}

.booking-form form {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  background: #fff;
  resize: vertical;
}

.booking-form button {
  margin-top: 25px;
  padding: 12px;
  background-color: #008dd2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background-color: #006caa;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .contact-booking-content {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #0f449c;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #f7ea24;
  margin: 0 8px;
  text-decoration: none;
  font-size: 1.2rem;
}

footer a:hover {
  color: white;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 5%;
    background-color: #0f449c;
    flex-direction: column;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* ===========================
   ANIMAÇÕES
=========================== */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
