:root {
  --bg: #f3f3f3;
  --paper: #ffffff;
  --brown-900: #5a2f2a;
  --brown-700: #7a443c;
  --brown-600: #8a4f44;
  --brown-500: #a06255;
  --brown-light: #de8059;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --ring: rgba(160, 98, 85, 0.25);
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--brown-900);
  line-height: 1.6;
}

img {
  max-width: 100%;
  border-radius: var(--radius);
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--brown-900);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--brown-700);
  border-radius: 50%;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
  border-radius: 8px;
}
.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav-list a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow);
}

.btn-brown {
  background: var(--brown-600);
}

.btn-brown-light {
  background: var(--brown-light);
}

.btn-brown-900 {
  background: var(--brown-900);
}

.btn:hover {
  background: var(--brown-500);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
}
.btn.small {
  padding: 8px 12px;
}

.text-justify {
  text-align: justify;
}

p.paragraph {
  text-indent: 3cm;
}

/* Hero */
.hero {
  background: var(--brown-900);
  color: #fff;
  padding: 100px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-light);
  font-size: 13px;
  font-weight: 600;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.2;
}
.subtitle {
  color: #f5e8e4;
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  position: relative;
  z-index: 1;
}

.rings::before,
.rings::after {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 280px;
  height: 280px;
  border: 3px solid var(--brown-light);
  border-radius: 50%;
}

.rings::after {
  inset: -4% -4% auto auto;
  width: 360px;
  height: 360px;
}
.about-media {
  position: relative;
}

.about-media  img{
  position: relative;
  z-index: 1;
}

.about-media > .square {
  position: relative;
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  /* keep it square and responsive */
  width: 100%;
  height: 100%;
  background-color: var(--brown-light);
  border-radius: 12px;
  transform: translate(-7%, -5%);
}

/* 
.rings::after {
  inset: -4% -4% auto auto;
  width: 360px;
  height: 360px;
} */


/* Sections */
.section {
  padding: 64px 0;
}
.section h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0;
}

/* Services */
.services {
  background: #f7f7f7;
}

.services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f1e6e3;
  color: var(--brown-700);
  font-size: 20px;
  margin-bottom: 10px;
}
.card h3 {
  margin: 8px 0;
  font-size: 18px;
}
.card p {
  color: var(--muted);
}


.bg-brown-light {
  background-color: var(--brown-light);
}

/* About */
.about {
  background: var(--brown-700);
  color: #fff;
}

/* adicionar rings */

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}
.about p {
  color: #fdebe6;
}

/* Quando Procurar */
.quandoProcurar {
  background: #f7f7f7;
}

/* Nosso Instagram */
.instagram {
  background: var(--brown-600);
  color: #fff;
}

/* FAQ */
.faq {
  background:  #f7f7f7;
  }

.panel {
  padding: 0 16px 14px;
  color: var(--muted);
}

/* Contact */
.contact {
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form {
  display: grid;
  gap: 12px;
}
label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font: inherit;
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 12px;
}
.contact-info {
  margin: 12px 0 0;
  padding: 0 6px;
  list-style: none;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--brown-900);
  color: #fff;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.footer-links {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: inline-block;
  }
  .nav-list {
    display: none;
  }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0 64px;
  }

  .hero h1 {
    font-size: 34px;
  }

 .rings::before,
.rings::after {
  inset: -10% -6% auto auto;
  width: 280px;
  height: 280px;
  border: 3px solid var(--brown-light);
  border-radius: 50%;
}

.rings::after {
  inset: -4% -4% auto auto;
  width: 360px;
  height: 360px;
}
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;

  animation: pulse 1.6s infinite ease-in-out;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button svg path {
  fill: #ffffff !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 12px 6px rgba(37, 211, 102, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
}

/* Botão Voltar ao Topo */
@keyframes float-pulse {
  0% {
    box-shadow: 0 6px 24px rgba(138, 79, 68, 0.5), 0 0 0 0 rgba(138, 79, 68, 0.4);
  }
  70% {
    box-shadow: 0 6px 24px rgba(138, 79, 68, 0.5), 0 0 0 12px rgba(138, 79, 68, 0);
  }
  100% {
    box-shadow: 0 6px 24px rgba(138, 79, 68, 0.5), 0 0 0 0 rgba(138, 79, 68, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 56px;
  height: 56px;
  background: var(--brown-light);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  box-shadow: 0 6px 24px rgba(138, 79, 68, 0.5);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  animation: float-pulse 2.2s infinite;
}

.back-to-top:hover {
  background: var(--brown-500);
  transform: translateY(-4px) scale(1.08) !important;
  animation: none;
  box-shadow: 0 10px 28px rgba(138, 79, 68, 0.6);
}

.back-to-top:active {
  transform: scale(0.95) !important;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    font-size: 20px;
  }
}

