@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #F7BE00;
  --primary-color-dark:  #5e4c00;
  --text-dark: #0c0a09;
  --text-light: #242323;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 120px;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  background-image: url("https://ciclovivo.com.br/wp-content/uploads/2023/09/livro-produtos-abelhas-urucu-amarela-creditos-gabriel-villasboas-1024x646.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header__container {
  padding-block: 10rem 15rem;
}

.header__container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  opacity: 0.6;
}

.header__container h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: var(--white);
  text-align: center;
}

.header__container h1 span {
  color: var(--primary-color);
}


.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}


.service {
 background-image: url("https://al.rr.leg.br/wp-content/uploads/2025/05/DIRETO-SITE-3-12.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.service__content {
  grid-column: 1/3;
  padding: 2rem 4rem;
  background-color: var(--white);
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #fb7185;
  background-color: #ffe4e6;
}
.scroll-top {
  position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #f7be00;
    color: white;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}


@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (width > 768px) {
  

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .service__content {
    grid-column: 2/3;
  }


}
/* Layout responsivo com 3 colunas em telas grandes */
@media (min-width: 900px) {
  .intro__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 540px) and (max-width: 899px) {
  .intro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.intro__container {
  background-image: url('assets/bg-padrao.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4rem 2rem;
  border-radius: 1rem;
  max-width: 1200px;
  margin: auto;
}

.h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 3rem;
  text-align: left;
  padding-left: 2rem;
  position: relative;
}

.h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 60%;
  background-color: #ffc737;
  transform: translateY(-50%);
  border-radius: 3px;
}

.intro__grid {
  display: grid;
  gap: 2rem;
}

.intro__card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e6e6e6;
}

.intro__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.intro__image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #f8ffb3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro__image img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.intro__card h4 {
  font-size: 1.2rem;
  color: #222;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.intro__card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.intro__card a {
  padding: 0.4rem 1.2rem;
  border: 2px solid;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.intro__card:nth-child(1) a {
  color: #ffc737;
  border-color: #ffc737;
}
.intro__card:nth-child(1) a:hover {
  color: white;
  background-color: #ffc737;
}

.intro__card:nth-child(2) a {
  color: #257ae7;
  border-color: #257ae7;
}
.intro__card:nth-child(2) a:hover {
  color: white;
  background-color: #257ae7;
}

.intro__card:nth-child(3) a {
  color: #cba9b6;
  border-color: #cba9b6;
}
.intro__card:nth-child(3) a:hover {
  color: white;
  background-color: #cba9b6;
}

.travel-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdff73c9;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 30px;
  max-width: 1000px;
  margin-inline: auto;
}

.text-content h1 {
  font-size: 2.3rem;
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.learn-more {
  margin-top: 25px;
  padding: 10px 24px;
  background: #F7BE00;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #dfc21d;
}

.carousel {
  width: 260px;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
  margin-left: 30px;
}

.carousel-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-up 12s linear infinite;
}

.carousel-inner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 20px;
}

/* Loop de rolagem contínua */
@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-460px); } /* altura total das imagens somada */
}

@media (max-width: 768px) {
  .travel-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .carousel {
    margin-left: 0;
    margin-top: 30px;
  }
}