* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  background: #f1e1d1;
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  z-index: 1001;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}



.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

header {
  background-color: #f1e1d1;
  color: #9b7955;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header.shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 600;
  color: #b08e6b;
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 50px;
  transition: 0.5s;
}

nav a:hover {
  background: #9b7955;
  color: #fff;
}

.logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 0;
}

#hero {
  margin-top: 60px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#test {
  border: solid 1px black;
  height: 100vh;
  width: 100vw;
}

.container {
  width: 100vw;
  height: 100%;
  overflow: hidden;
  justify-content: center;
  display: flex;
  align-items: center;
}

.slider {
  position: absolute;
  inset: 80px 200px 20px 80px;
}

.slider .slides {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 320px;
  background: var(--img);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transition: 0.5s;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  box-shadow: 0 25px 50px rgb(0, 0, 0, 0.5);
  overflow: hidden;
}

.slider .slides:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px;
}

.slider .slides:nth-child(1)>* {
  position: relative;
  z-index: 2;
}

.content h2 {
  margin-top: 20px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content p {
  text-align: justify;
  margin-top: 20px;
  font-size: clamp(18px, 3vw, 23px);
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.content {
  position: relative;
  padding: 40px;
  max-width: 600px;
  transition: 0.25s;
  transform: translateY(40px);
  transition-delay: 0s;
  z-index: 10;
  opacity: 0;
}

.slider .slides .content p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s linear, max-height 0.5s linear;
}

.slider .slides:nth-child(1) .content p {
  opacity: 1;
  max-height: 1000px;
  transition-delay: 0.3s;
}

.slider .slides:nth-child(1) .content p {
  opacity: 1;
  max-height: 1000px;
}

.slider .slides:nth-child(1) .content {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.5s;
}

.slider .slides:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  box-shadow: 0 25px 50px rgb(0, 0, 0, 0);
  background-size: cover;
}

.slider .slides:nth-child(2) {
  left: calc(50% + 240px);
  background-size: cover;
}

.slider .slides:nth-child(3) {
  left: calc(50% + 500px);
  background-size: cover;
}

.slider .slides:nth-child(4) {
  left: calc(50% + 760px);
  background-size: cover;
}

.buttons {
  padding-bottom: 100px;
  padding-left: 36%;
  display: flex;
  gap: 20px;
}

.buttons span i {
  color: #ffffff;
  font-size: 24px;
}

footer {
  color: #5e4b37;
  background: #dbb997;
  width: 100%;
  height: auto;
}

footer a {
  transition: .3s;
  color: #5e4b37;
}

footer a:hover {
  color: #fff;
}

.container__footer {
  padding: 2rem 1rem;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

footer img {
  filter: brightness(0) invert(1);
  width: 100%;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
}

.footer-info i {
  margin-right: 0.5rem;
  color: #ac7e4e;
}

.container__footer hr {
  border: none;
  border-top: 1px solid #e6e2d7;
  margin: 2rem 0 1rem;
}

.footer-copy {
  text-align: center;
  font-size: 16px;
  opacity: 0.7;
}

/* Responsivo a partir de tablets */
@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-info {
    flex-direction: row;
    text-align: left;
  }
}

.buttons span:hover {
  background: #9b7955;
}

.buttons span {
  position: relative;
  width: 50px;
  height: 50px;
  background: #b08e6b;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.profile-section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #9b7955;
  ;
}

.profile-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 20px;
}

.card {
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  background: #dbb997;
  background: #b08e6b;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: ease .3s;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.info {
  padding: 15px;
  text-align: center;
}

.info h3 {
  margin: 10px 0;
  font-size: clamp(20px, 3vw, 22px);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}

.whatsapp-link i {
  font-size: 22px;
}


#local {
  padding: 60px 20px;
  text-align: center;
}

#local h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #9b7955;
}

.local-gallery {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.local-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.local-gallery {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .local-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .local-gallery img {
    aspect-ratio: 5/4;
  }
}

.card img {
  height: 450px;
}

.local-gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .content {
    padding: 20px;
  }

  .profile-section {
    grid-template-columns: 1fr;
  }

  .header-container {
    justify-content: space-between;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: #f1e1d1;
    position: absolute;
    border-radius: 15px;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    margin-right: 0;
  }
}

@media (max-width: 1240px) {

  .slider .slides:nth-child(3) {
    display: none;
  }

  .slider .slides:nth-child(4) {
    display: none;
  }
}

@media (max-width: 900px) {
  .slider {
    margin-top: 80px;
    position: absolute;
    inset: 10px 10px -60px 10px;
  }

  #hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .buttons {
    padding: 0;
    margin-top: 60px;
    bottom: 0;
  }

  .slider .slides:nth-child(1) {
    top: initial;
    bottom: 0px;
  }

  .slider .slides {
    width: 100px;
    height: 100px;
    top: initial;
    bottom: -170px;
  }

  .slider .slides:nth-child(2) {
    display: none;
  }

  .slider .slides:nth-child(3) {
    display: none;
  }

  .slider .slides:nth-child(4) {
    display: none;
  }
}