@tailwind base;
@tailwind components;
@tailwind utilities;

html {
  scroll-behavior: smooth;
}

header {
  display: flex;
  align-items: center;
  height: 80px;
}

.hero {
  height: 83vh;
  background-image: url("./images/hero.png");
  background-size: cover;
  background-position: center;
}

.container__hero {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

.hero__button {
  background-color: #161616;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;

  &:hover {
    background-color: rgba(40, 40, 40, 0.9);
  }
}

.content__hero {
  width: 40%;
}

.container__team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-card {
  width: 25%;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo__footer {
  height: 64px;
}

.container__medias-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.button__menu-mobile {
  color: #fff;
  font-size: 24px;
}

#mobile-menu {
  background-color: rgb(27, 27, 27);
  border-radius: 0 0 12px 12px;
}

.region__main {
  margin-top: 5rem;
}

.container__CTA-regions {
  width: 70%;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* espaço entre ícone e texto */
  background-color: #f29c50;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.whatsapp-button i {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .hero {
    height: 94vh;
    background-image: url("./images/mobileHero.png");
    background-size: cover;
  }

  .content__hero {
    width: 100%;
  }

  .team-card {
    width: 100%;
  }

  .logo__footer {
    height: 56px;
  }

  .region__main {
    margin-top: 4rem;
  }

  .container__CTA-regions {
    width: 100%;
  }
}

.infor__content {
  height: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.property-card {
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
}

.property-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
  transition: all 0.3s ease;
}

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

.team-card:hover img {
  transform: scale(1.05);
}

.team-card img {
  transition: transform 0.3s ease;
}

.gradient-text {
  font-size: 18px;
  background-image: url("../images/gradiente.png");
  background-size: contain;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.depoiments {
  background-color: #f2d06b;
}

.content__contact,
.button__contact {
  background-color: #f29c50;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: #f2f2f2;
  color: #333;
  border: none;
  cursor: pointer;
}
.filter-btn:hover {
  background-color: #e6e6e6;
}
.filter-btn.active {
  background-color: #d98e04;
  color: white;
}

/* Contact Section */

/* Seção principal */
.contato-section {
  padding: 4rem 0;
  background: #f8f9fb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contato-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}

.contato-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

/* Card */
.contato-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 2rem;
}

/* Perfil */
.perfil-container {
  display: flex;
  gap: 2rem;
  color: #3a465d;
  flex-direction: column;
}

@media (min-width: 768px) {
  .perfil-container {
    flex-direction: row;
    align-items: center;
  }
}

.perfil-img-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .perfil-img-wrapper {
    display: block;
    width: 8rem;
    height: 8rem;
  }
}

.perfil-img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nome e ações */
.perfil-header {
  display: flex;

  flex-direction: column;
  gap: 0.5rem;
}

.perfil-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.perfil-nome {
  font-size: 1.25rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .perfil-header {
    align-items: center;
    flex-direction: row;
  }

  .perfil-nome {
    font-size: 1.5rem;
  }
}

.icon-verificado {
  width: 18px;
  height: 18px;
  fill: rgb(0, 149, 246);
}

/* Botões */
.perfil-actions {
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .perfil-actions {
    font-size: 1.5rem;
  }
}

.btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: #0095f6;
  color: #fff;
}

.btn-primary:hover {
  background: #273992;
}

.btn-secondary {
  background: #f1f1f1;
  color: #333;
}

/* Stats */
.perfil-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.perfil-stats span {
  font-weight: bold;
  display: block;
}

/* Bio */
.perfil-bio {
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .perfil-bio {
    font-size: 1rem;
  }
}

/* Grid posts */
.grid-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.grid-posts img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .grid-posts img {
    height: 25rem;
  }
}
