* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@600;700&display=swap');

/* Base styles */
/* write css code here */

body {
  font-family: 'Atkinson Hyperlegible', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
/* write css code here */
  -moz-osx-font-smoothing: grayscale;
}

/* Title */
.site-title {
  font-size: 30px;
  color: #AC8257;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;

}

.site-description {
  font-size: 16px;
  color: #555555;
  margin: 0 1rem 2rem 1rem;
  text-align: center;
}

/* Header (logo + action) */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  width: 139px;
  height: auto;
}

/* Responsive: stack header items on small screens */
@media (max-width: 640px) {
  .header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .logo {
    width: 120px;
  }

  .button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* Button styles */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  background: #AC8257;
  font-weight: 700;
  transition: background 150ms ease, transform 120ms ease;
}

.image-button
{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 25px;
  margin: 20px;
}

.button::after {
  content: '→';
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 160ms ease;
  transform: translateX(0);
  font-size: 1em;
  line-height: 1;
  color: inherit;
}

.button:hover {
  transform: translateY(-5px);
}

.button:hover::after {
  transform: translateX(6px);
}

.button:focus {
  outline: 3px solid rgba(172,130,87,0.25);
  outline-offset: 3px;
}

/* WhatsApp-specific modifier (if you want brand color instead)
.button-whatsapp { background: #25D366; color: #0a3d12; }
*/

/* Responsive image rules */
.hero-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Utility for full-viewport cover images */
.hero-image--cover {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Prevent horizontal overflow from elements using viewport widths */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.button-whatsapp
{
  background-color: rgb(34, 97, 84);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  color: white;
  fill: white;
}

.image-container {
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    flex-wrap: wrap;         /* permite quebrar linha se necessário */
    gap: 20px;               /* espaço entre as imagens */
    margin-top: 20px;
}

.image-item {
    text-align: center; /* centraliza imagem + texto */
}

.image-description {
  font-size: 16px;
  color: #AC8257;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
}

.mySwiper {
    width: 90%;
    margin: 100px auto;
}

.swiper-slide img {
    width: 100%;
    height: px;
    object-fit: cover;
    border-radius: 12px;
}

.location-section {
    text-align: center;
    margin: 50px auto;
    max-width: 900px;
}

.location-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-section iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.footer {
    background: #333333;
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center;
    font-family: 'Atkinson Hyperlegible', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-section p {
    margin: 5px 0;
    font-size: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: #AC8257;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: #8f6a46; /* tom mais escuro no hover */
    transform: translateY(-3px);
}

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.3s;
}

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