@import url("https://fonts.cdnfonts.com/css/futura-std-4");

body {
  font-family: "Futura Std", sans-serif;
  margin: 0;
  padding: 0;
  color-scheme: light;
  background: #fff;
  color: #000;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 20px;
  max-width: 1200px;
}

.hero-section {
  background-image: url("/images/banner-fale-conosco.jpg");
  background-size: cover;
  background-position: center;
  height: 75vh;
  position: relative;
  padding: 0;
}

.hero-content-left {
  width: 65%;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 78px;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 600px;
}

.hero-overlay p {
  font-size: 32px;
  max-width: 600px;
}

.hero-overlay .button-associe {
  align-self: flex-start;
}

.button-associe-cta {
  background-color: #ffcc00;
  color: #002060;
  padding: 10px 20px;
  max-height: 50px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  transition: background-position 1s ease, color 0.3s ease, box-shadow 0.3s ease;
  background-size: 300%;
  background-image: linear-gradient(
    to right,
    #006400 33.33%,
    #ff0000 33.33%,
    #ff0000 66.66%,
    #ffcc00 66.66%
  );
  background-position: right;
}

.button-associe-cta:hover {
  background-position: left;
  color: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

.button-associe-cta:active {
  box-shadow: 0 0 20px 10px #0b43b3;
}

.summer-section {
  background-color: #fff;
}

.summer-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #002060;
}

.image-gallery {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
  gap: 10px;
}

.image-gallery img {
  width: calc(50% - 10px);
  max-width: 610px;
  height: 305px;
  object-fit: cover;
  border-radius: 12px;
}

.summer-section p {
  font-size: 22px;
  text-align: center;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}

.costs-section {
  background-color: #002060;
  color: #fff;
}

.costs-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}

.costs-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
}

.cost-item {
  text-align: center;
  flex: 1;
  margin: 0 20px;
}

.price {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 10px;
}

.label {
  font-size: 24px;
  font-weight: bold;
}

.costs-section p {
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.about-section {
  background-color: #fff;
}

.about-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #002060;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.image-mosaic img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.about-section p {
  font-size: 22px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}

.services-section {
  background-color: #f4f4f4;
}

.services-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #002060;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-mosaic-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 15px;
}

.image-mosaic-services .main-image {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 400px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.small-images {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.small-images img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}

.services-text {
  padding: 20px;
}

.services-text p {
  font-size: 22px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}

.services-text ul {
  font-size: 22px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}

.services-text li {
  margin-bottom: 15px;
}

.mission-section {
  background-color: #fff;
}

.mission-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  color: #002060;
}

.mission-section p {
  font-size: 22px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 20px;
  font-weight: 500;
}

.spacer {
  height: 20px;
}

/* Mobile - Mostrar/esconder elementos */
.desktop-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mobile-swiper {
  display: none;
  overflow: hidden;
}

.swiper-slide {
  width: 100% !important;
}

.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

/* RESPONSIVIDADE - TABLETS E MOBILE */
@media (max-width: 1024px) {
  .hero-overlay h1 {
    font-size: 54px;
    max-width: 500px;
  }

  .hero-overlay p {
    font-size: 24px;
    max-width: 500px;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-mosaic-services {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .image-mosaic-services .main-image {
    grid-column: 1;
    grid-row: 1;
    height: 300px;
  }

  .small-images {
    grid-column: 1;
    grid-row: 2 / 4;
    flex-direction: row;
  }

  .small-images img {
    height: 150px;
  }

  .services-text {
    grid-row: 4;
    padding: 0;
  }
}

/* MOBILE - ATÉ 768px */
@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 30px 15px;
  }

  section {
    padding: 40px 0;
  }

  /* Hero Section */
  .hero-section {
    height: 60vh;
  }

  .hero-content-left {
    width: 100%;
  }

  .hero-overlay {
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .hero-overlay h1 {
    font-size: 32px;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .hero-overlay p {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-overlay .button-associe {
    align-self: center;
  }

  /* Summer Section */
  .summer-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .image-gallery {
    flex-direction: column;
    gap: 15px;
  }

  .image-gallery img {
    width: 100%;
    height: 250px;
  }

  .summer-section p {
    font-size: 16px;
  }

  /* Costs Section */
  .costs-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .costs-container {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .cost-item {
    margin: 20px 0;
  }

  .price {
    font-size: 48px;
  }

  .label {
    font-size: 18px;
  }

  .costs-section p {
    font-size: 16px;
  }

  /* About Section */
  .about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-section p {
    font-size: 16px;
  }

  .desktop-mosaic {
    display: none;
  }

  .mobile-swiper {
    display: block;
    margin-bottom: 30px;
  }

  /* Services Section */
  .services-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-mosaic-services {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .image-mosaic-services .main-image {
    grid-column: 1;
    grid-row: 1;
    height: 200px;
  }

  .small-images {
    grid-column: 1;
    grid-row: 2 / 4;
    flex-direction: row;
  }

  .small-images img {
    height: 100px;
  }

  .services-text {
    padding: 0;
    grid-row: 4;
  }

  .services-text p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .services-text ul {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .services-text li {
    margin-bottom: 10px;
  }

  /* Mission Section */
  .mission-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .mission-section p {
    font-size: 16px;
  }

  .swiper-pagination {
    bottom: 5px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
