@import "https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800;900&display=swap";
:root {
  --brand-900: #2b1a10;
  --brand-800: #4a2f1c;
  --brand-700: #6b4527;
  --accent-500: #d9812f;
  --accent-400: #eba84f;
  --bg: #fbf4ea;
  --surface: #fffcf7;
  --text: #2e2016;
  --text-muted: #7c6b5c;
  --border: #efdfc8;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow: 0 10px 30px #4a2f1c1a;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Gabarito, sans-serif;
}

h1, h2, h3, h4 {
  color: var(--brand-900);
  margin: 0;
  font-family: Gabarito, sans-serif;
  font-weight: 800;
}

p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

.page-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 6rem 2rem;
}

.btn {
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid #0000;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all .2s;
  display: inline-flex;
}

.btn-primary {
  background: var(--accent-500);
  color: var(--brand-900);
}

.btn-primary:hover {
  background: var(--accent-400);
  transform: translateY(-1px);
}

.btn-outline {
  color: #fff;
  background: none;
  border-color: #ffffff80;
}

.btn-outline:hover {
  background: #ffffff1f;
  border-color: #fff;
}

.btn-outline.dark {
  color: var(--brand-900);
  border-color: var(--brand-900);
}

.btn-outline.dark:hover {
  border-color: var(--brand-900);
  background: #2b1a100f;
}

.btn-light {
  color: var(--brand-900);
  background: #fff;
}

.btn-light:hover {
  background: var(--accent-400);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: .6rem;
  font-size: .8rem;
  font-weight: 700;
  display: inline-block;
}

.eyebrow.light {
  color: var(--accent-400);
}

.section-heading h2 {
  margin-bottom: .6rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-heading p {
  font-size: 1.05rem;
}

.header {
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.header-inner {
  max-width: var(--max-width);
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
}

.logo-container {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.logo-img {
  flex-shrink: 0;
  width: auto;
  height: 42px;
}

.logo-text {
  color: var(--brand-900);
  flex-direction: column;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  display: flex;
}

.logo-text small {
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 500;
}

.menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  display: none;
}

.menu-toggle span {
  background: var(--brand-900);
  border-radius: 2px;
  height: 2px;
  display: block;
}

.nav-items {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.nav-items ul {
  gap: 1.75rem;
  display: flex;
}

.nav-items ul a {
  color: var(--text);
  border-bottom: 2px solid #0000;
  padding-bottom: 4px;
  font-weight: 600;
}

.nav-items ul a:hover, .nav-items ul a.active {
  color: var(--brand-800);
  border-bottom-color: var(--accent-500);
}

.nav-ctas {
  gap: .75rem;
  display: flex;
}

.nav-cta {
  border-radius: 999px;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  font-size: .9rem;
  font-weight: 700;
  display: inline-flex;
}

.nav-cta.whatsapp {
  color: #128c4a;
  background: #25d3661f;
}

.nav-cta.call {
  background: var(--brand-800);
  color: #fff;
}

.nav-cta.call:hover {
  background: var(--brand-900);
}

.hero {
  background: radial-gradient(circle at top right, var(--brand-700), var(--brand-900) 65%);
  max-width: var(--max-width);
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: flex;
  overflow: hidden;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  color: #fff;
  margin: .6rem 0 1.2rem;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
}

.hero h1 span {
  color: var(--accent-400);
}

.hero-subtext {
  color: #ffffffc7;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-ctas {
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  display: flex;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 2.5rem;
  display: flex;
}

.hero-stat {
  flex-direction: column;
  display: flex;
}

.hero-stat strong {
  color: var(--accent-400);
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-stat span {
  color: #ffffffb3;
  font-size: .85rem;
}

.hero-visual {
  flex-shrink: 0;
  width: 320px;
}

.hero-visual img {
  filter: drop-shadow(0 20px 30px #00000059);
  width: 100%;
}

.why-choose {
  text-align: center;
  max-width: 800px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.why-choose-text {
  font-size: 1.1rem;
}

.services-section {
  max-width: var(--max-width);
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all .2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-500);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--brand-800);
  background: #d9812f1f;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.service-card h3 {
  margin-bottom: .6rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: .95rem;
}

.testimonials-section {
  background: var(--brand-800);
  padding: 5rem 1.5rem;
}

.testimonials-section .section-heading h2, .testimonials-section .eyebrow {
  color: #fff;
}

.testimonials-section .eyebrow {
  color: var(--accent-400);
}

.testimonials-grid {
  max-width: var(--max-width);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  display: grid;
}

.testimonial-card {
  border-radius: var(--radius);
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
  padding: 1.8rem;
}

.testimonial-card .quote {
  color: #ffffffd9;
  margin-bottom: 1.2rem;
  font-style: italic;
  display: block;
}

.testimonial-author {
  align-items: center;
  gap: .75rem;
  display: flex;
}

.testimonial-author strong {
  color: #fff;
  font-size: .95rem;
  display: block;
}

.testimonial-author span {
  color: #fff9;
  font-size: .82rem;
}

.avatar-initials {
  background: var(--accent-500);
  width: 42px;
  height: 42px;
  color: var(--brand-900);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  display: flex;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.faq-list {
  flex-direction: column;
  gap: .9rem;
  display: flex;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .4rem 1.5rem;
}

.faq-item.open {
  border-color: var(--accent-500);
}

.faq-question {
  text-align: left;
  width: 100%;
  color: var(--brand-900);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-size: 1.02rem;
  font-weight: 700;
  display: flex;
}

.faq-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-500);
  background: #d9812f24;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
}

.faq-answer {
  padding-bottom: 1.3rem;
  font-size: .98rem;
}

.cta-banner {
  max-width: var(--max-width);
  background: linear-gradient(120deg, var(--accent-500), var(--accent-400));
  border-radius: var(--radius);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto 5rem;
  padding: 2.5rem 3rem;
  display: flex;
}

.cta-banner h2 {
  margin-bottom: .4rem;
  font-size: 1.6rem;
}

.cta-banner p {
  color: var(--brand-900);
  opacity: .75;
}

.cta-banner-actions {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.cta-banner .btn-primary {
  background: var(--brand-900);
  color: #fff;
}

.cta-banner .btn-primary:hover {
  background: var(--brand-800);
}

.blog-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-direction: column;
  gap: .6rem;
  padding: 1.8rem;
  transition: all .2s;
  display: flex;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent-500);
  transform: translateY(-4px);
}

.blog-card-date {
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.2rem;
}

.blog-card p {
  font-size: .95rem;
}

.blog-card-link {
  color: var(--accent-500);
  margin-top: .4rem;
  font-size: .9rem;
  font-weight: 700;
}

.blog-post-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.blog-back-link {
  color: var(--accent-500);
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: inline-block;
}

.blog-post-page h1 {
  margin: .5rem 0 2rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.blog-post-body {
  flex-direction: column;
  gap: 1.1rem;
  display: flex;
}

.blog-post-body h3 {
  margin-top: .5rem;
  font-size: 1.15rem;
}

.blog-post-body p {
  font-size: 1.02rem;
}

.blog-post-cta {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  background: #d9812f14;
  margin-top: 3rem;
  padding: 2rem;
}

.blog-post-cta h3 {
  margin-bottom: .3rem;
}

.blog-post-cta p {
  margin-bottom: 1.2rem;
}

.blog-post-cta .cta-banner-actions {
  justify-content: center;
}

.about-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.about-hero {
  align-items: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
  display: flex;
}

.about-photo {
  flex-shrink: 0;
}

.avatar-placeholder {
  background: linear-gradient(145deg, var(--brand-800), var(--brand-900));
  width: 200px;
  height: 200px;
  color: var(--accent-400);
  box-shadow: var(--shadow);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: 800;
  display: flex;
}

.about-intro h1 {
  margin: .4rem 0 .3rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-tagline {
  color: var(--accent-500);
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-intro p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-body {
  flex-direction: column;
  gap: 1.2rem;
  max-width: 760px;
  margin-bottom: 2.5rem;
  display: flex;
}

.about-body p {
  font-size: 1.02rem;
}

.about-highlights {
  flex-wrap: wrap;
  gap: .75rem;
  display: flex;
}

.highlight-pill {
  color: var(--brand-800);
  background: #d9812f1f;
  border: 1px solid #d9812f59;
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-size: .9rem;
  font-weight: 600;
}

.contact-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.contact-grid {
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  display: grid;
}

.contact-info-cards {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--brand-800);
  align-items: flex-start;
  gap: .9rem;
  padding: 1.2rem;
  display: flex;
}

.contact-info-card:hover {
  border-color: var(--accent-500);
}

.contact-info-card strong {
  margin-bottom: .2rem;
  display: block;
}

.contact-info-card span, .contact-info-card .address-line {
  color: var(--text-muted);
  font-size: .9rem;
  display: block;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  display: flex;
}

.contact-form label {
  color: var(--brand-900);
  flex-direction: column;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
}

.contact-form input, .contact-form select, .contact-form textarea {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg);
  border-radius: 8px;
  padding: .75rem .9rem;
  font-size: .98rem;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--accent-500);
  outline: none;
}

.contact-form button {
  align-self: flex-start;
}

.footer {
  background: var(--brand-900);
  color: #ffffffbf;
  margin-top: 2rem;
}

.footer-grid {
  max-width: var(--max-width);
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
}

.footer-logo {
  background: var(--surface);
  border-radius: 999px;
  height: 52px;
  margin-bottom: 1.2rem;
  padding: .3rem .7rem;
}

.footer-brand p {
  color: #fff9;
  font-size: .92rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  flex-direction: column;
  gap: .6rem;
  font-size: .92rem;
  display: flex;
}

.footer-links a {
  color: #ffffffa6;
}

.footer-links a:hover {
  color: var(--accent-400);
}

.footer-contact p {
  color: #ffffffb3;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .8rem;
  font-size: .92rem;
  display: flex;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.address-line {
  display: block;
}

.footer-bottom {
  text-align: center;
  color: #ffffff80;
  border-top: 1px solid #ffffff1a;
  padding: 1.2rem 1.5rem;
  font-size: .85rem;
}

.whatsapp-fab {
  background: var(--whatsapp);
  color: #fff;
  z-index: 200;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  transition: all .2s;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 8px 20px #25d36666;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.error-page {
  text-align: center;
  max-width: 600px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.error-page h1 {
  color: var(--brand-800);
  font-size: 3rem;
}

.error-page h2 {
  color: var(--text-muted);
  margin: .5rem 0 1.5rem;
  font-size: 1.2rem;
}

.error-page h3 {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

@media (width <= 900px) {
  .about-hero {
    text-align: center;
    flex-direction: column;
  }

  .about-highlights {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width <= 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-items {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .nav-items.open {
    display: flex;
  }

  .nav-items ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-ctas {
    flex-direction: column;
    width: 100%;
  }

  .header-inner {
    position: relative;
  }

  .hero {
    text-align: center;
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .hero-ctas, .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    width: 220px;
  }

  .cta-banner {
    text-align: center;
    flex-direction: column;
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=index.9e4c6fd2.css.map */
