:root {
  --color-dark: #3b2a05;
  --color-light: #ffd9a4;
  --color-white: #ffffff;
  --color-black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rancho', cursive;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: var(--color-light);
  position: fixed;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-family: 'Vanilla Whale', serif;
  font-size: 2.5rem;
  color: var(--color-dark);
  text-decoration: none;
}

.menu ul {
  list-style: none;
  display: flex;  
}

.menu li {
  margin-left: 1.9rem;
}

.menu a {
  font-family: 'Rancho', cursive;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.5rem;
}

.menu a:hover {
  color: var(--color-black);
}

/* BANNER */
#banner {
  position: relative;
  height: 100vh;
  background: url("../images/foto-casinha.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
}

.banner-content h1 {
  font-family: 'Vanilla Whale', serif;
  font-size: 5rem;
  color: var(--color-light);
  margin-bottom: 1rem;
}

.banner-content p {
  font-family: 'Rancho', cursive;
  font-size: 2.5rem;
  color: var(--color-light);
  margin-bottom: 2rem;
}


/* APRESENTAÇÃO */
#apresentacao {
  padding: 4rem 0;
}

.section-title {
  font-family: 'Vanilla Whale', serif;
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.section-text {
  font-family: 'Rancho', cursive;
  font-size: 1.9rem;
  text-align:center;
  margin-bottom:1rem;
}

/* GALERIA */
#galeria {
  padding: 4rem 0;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1rem;
  padding-bottom: 1rem;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-item {
  flex: 0 0 60%;
  scroll-snap-align: center;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* DEPOIMENTOS */
#depoimentos {
  padding: 4rem 0;
  background: var(--color-light);
}

.depoimentos-list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.depoimento-item img {
  width: 100%;
  max-width: 350px;
  border: 4px solid var(--color-dark);
  border-radius: 4px;
}

/* MAPA */
#mapa {
  padding: 4rem 0;
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 4px;
}

/* RODAPÉ */
footer {
  background: var(--color-light);
  padding: 2rem 0;
  text-align: center;
}

.social-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-list a {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.social-list a:hover {
  color: var(--color-black);
}

footer p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--color-dark);
}

/* Responsividade */
@media (max-width: 768px) {
  .carousel {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  .carousel-item {
    flex: 0 0 80%;
  }
  header .menu ul {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}