/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #8B4513;
  --secondary-color: #D2B48C;
  --accent-color: #DAA520;
  --success-color: #25D366;
  --white-color: #FFFFFF;
  --light-color: #F5F5F5;
  --dark-color: #333333;
  --gray-color: #666666;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --hero-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  
  /* Typography */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
  --accent-font: 'Montserrat', sans-serif;
  
  /* Font Sizes */
  --h1-font-size: 3.8rem;
  --h2-font-size: 2.8rem;
  --h3-font-size: 1.7rem;
  --normal-font-size: 1.15rem;
  --small-font-size: 1rem;
  
  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --header-height: 4rem;
  --section-padding: 5rem 0;
  --container-margin: 0 1rem;
  --border-radius: 0.75rem;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  
  /* Z-index */
  --z-header: 100;
  --z-modal: 1000;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (max-width: 768px) {
  :root {
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.25rem;
    --section-padding: 3rem 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: #222; /* Mais escuro que o #333 */
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--light-color);
}

h1, h2, h3 {
  font-family: var(--heading-font);
  font-weight: var(--font-bold);
  line-height: 1.2;
  color: #1a1a1a; /* Títulos ainda mais escuros */
}

ul {
  list-style: none;
}

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

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

/* ===== REUSABLE CLASSES ===== */
.container {
  max-width: 1200px;
  margin: var(--container-margin);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: var(--h2-font-size);
  color: #1a1a1a; /* Títulos ainda mais escuros */
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-family: var(--accent-font);
  font-weight: var(--font-semibold);
  font-size: var(--normal-font-size);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary-gradient);
  color: var(--white-color);
  box-shadow: var(--box-shadow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
}

.btnmenu {
  background: var(--primary-gradient);
  color: var(--white-color);
  box-shadow: var(--box-shadow);
  width: 10rem;
  height: 4rem;
  font-size: 1rem;
  padding: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn__icon {
  font-size: 1.25rem;
}

/* Botão WhatsApp inline (menu, hero, contato) */
.btn--whatsapp-inline {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn--whatsapp-inline:hover {
    background: #1faf50;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp-inline:active {
    transform: translateY(0);
}

.btn--whatsapp-inline:focus {
    outline: 3px solid rgba(37, 211, 102, 0.4);
    outline-offset: 2px;
}

.btn--whatsapp-inline i {
    font-size: 1.2rem;
    line-height: 1;
}

.btn--whatsapp-inline span {
    line-height: 1;
    vertical-align: middle;
}

/* Botão WhatsApp float style para menu */
.btn--whatsapp-float {
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.25);
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease;
}

.btn--whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.22);
}

.btn--whatsapp-float i {
    font-size: 30px;
    color: #fff;
    line-height: 1;
}

.btn--whatsapp-float:focus {
    outline: 3px solid rgba(0, 0, 0, 0.12);
    outline-offset: 2px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: var(--z-header);
  transition: all 0.3s ease;
}

.header.scroll-header {
  background: var(--white-color);
  box-shadow: var(--box-shadow);
}



.nav {
  height: auto; /* Permite que o padding funcione corretamente */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;    /* Espaço acima do menu */
  padding-bottom: 0.5rem; /* Espaço abaixo do menu */
  padding-left: 3rem;     /* Espaço lateral opcional */
  padding-right: 3rem;    /* Espaço lateral opcional */
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-img {
  width: 10rem;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--heading-font);
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  color: var(--primary-color);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-weight: var(--font-medium);
  color: var(--dark-color);
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

.nav__social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 1.5rem;
}

.nav__social-link i {
  font-size: 1.3rem;
  color: #a86a2c;
  transition: color 0.2s;
}

.nav__social-link:hover i {
  color: #d49b4c;
}

@media screen and (max-width: 768px) {
  .nav__social {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  background: linear-gradient(135deg, #f8f6f3 0%, #ede7e0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__container {
  display: grid;
  gap: 3rem;
  padding-top: 2rem;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-size: var(--h1-font-size);
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  color: var(--primary-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 400px;
  height: 500px;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.hero__image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.stat__number {
  display: block;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
}

.stat__text {
  font-size: var(--small-font-size);
  color: var(--gray-color);
  font-weight: var(--font-medium);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--white-color);
}

.about__container {
  display: grid;
  gap: 3rem;
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__name {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.about__credential {
  font-weight: var(--font-semibold);
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.about__description {
  margin-bottom: 1.5rem;
  color: #222;
  line-height: 1.8;
  font-size: 1.18rem; /* Um pouco maior para textos importantes */
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
}

.highlight__icon {
  font-size: 1.5rem;
}

.highlight__text {
  font-weight: var(--font-medium);
  color: var(--dark-color);
}

/* ===== PROCESS SECTION ===== */
.process {
  background: var(--light-color);
}

.process__container {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  color: #222;
}

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

.step__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--accent-font);
  font-weight: var(--font-bold);
  font-size: 1.25rem;
}

.step__title {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.step__description {
  color: var(--gray-color);
  line-height: 1.6;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  background: var(--white-color);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.benefit {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.benefit__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit__title {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.benefit__description {
  color: #222;
  font-size: 1.18rem; /* Um pouco maior para textos importantes */
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--light-color);
}

.services__container {
  display: flex;
  gap: 2rem;           /* Espaço entre as caixas */
  flex-wrap: wrap;     /* Para responsividade em telas menores */
  justify-content: center; /* Centraliza as caixas */
}

.service {
  flex: 1 1 320px;     /* Largura mínima e flexível */
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  min-width: 280px;
  max-width: 400px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service--centered {
  margin: 2rem auto 0 auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service__icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--white-color);
}

.contact__container {
  max-width: 800px;
  margin: 0 auto;
}

.contact__content {
  display: grid;
  gap: 3rem;
  text-align: center;
}

.contact__title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact__description {
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.18rem; /* Um pouco maior para textos importantes */
}

.contact__methods {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
}

.method__icon {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.method__content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.method__label {
  font-weight: var(--font-semibold);
  color: var(--dark-color);
}

.method__value {
  color: var(--gray-color);
  font-size: var(--small-font-size);
}

.contact__cta {
  text-align: center;
}

.contact__cta-text {
  margin-top: 1rem;
  color: var(--gray-color);
  font-size: var(--small-font-size);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  width: 10rem;         /* aumenta o tamanho, ajuste se quiser */
  height: auto;         /* mantém a proporção original */
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  display: block;
  max-width: 100%;
}

.footer__description {
  color: var(--secondary-color);
  line-height: 1.6;
}

.footer__title {
  margin-bottom: 1rem;
  color: var(--white-color);
}

.footer__text {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.footer__list li {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  color: var(--secondary-color);
  font-size: var(--small-font-size);
}

.footer__social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1rem;
}

.footer__social-link i {
  font-size: 1.7rem;
  color: #fff;
  background: #a86a2c;
  border-radius: 50%;
  padding: 0.4rem;
  transition: background 0.2s, color 0.2s;
}

.footer__social-link:hover i {
  background: #d49b4c;
  color: #fff;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__image-wrapper {
    width: 300px;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white-color);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .nav__link {
    font-size: 1.25rem;
  }
  
  .nav__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .process__step {
    flex-direction: column;
    text-align: center;
  }
  
  .why-choose__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__method {
    justify-content: center;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .container {
    margin: 0 0.5rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--small-font-size);
  }
  
  .hero__image-wrapper {
    width: 250px;
    height: 350px;
  }
  
  .process__step,
  .benefit,
  .service {
    padding: 1.5rem 1rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ScrollReveal animations will be applied via JavaScript */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .nav__actions .btn--primary{
    display: none !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero__actions {
    justify-content: center;
  }
}
