/* ==================================================
   VARIÁVEIS
================================================== */

:root {
  --primary: #c594aa;

  --primary-dark: #a96f89;

  --secondary: #feeaf3;

  --background: #fffafc;

  --surface: #ffffff;

  --text: #46383e;

  --text-light: #806f76;

  --border: #f0dfe6;

  --shadow: 0 20px 50px rgba(100, 60, 80, 0.1);

  --radius: 22px;

  --title-font: "Playfair Display", serif;

  --body-font: "DM Sans", sans-serif;
}

/* ==================================================
   RESET
================================================== */

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);

  background: var(--background);

  color: var(--text);

  line-height: 1.6;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;

  display: block;
}

a {
  color: inherit;

  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, 92%);

  margin: auto;
}

.section {
  padding: 110px 0;
}

/* ==================================================
   HEADER
================================================== */

.header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  background: rgba(255, 250, 252, 0.92);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid var(--border);
}

.nav-container {
  height: 80px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.logo {
  display: flex;

  flex-direction: column;

  line-height: 1;
}

.logo span {
  font-family: var(--title-font);

  font-size: 28px;

  color: var(--primary-dark);
}

.logo small {
  font-size: 8px;

  letter-spacing: 4px;

  margin-top: 5px;

  color: var(--text-light);
}

.nav {
  display: flex;

  gap: 28px;
}

.nav a {
  font-size: 14px;

  font-weight: 600;

  color: var(--text-light);

  transition: 0.3s;
}

.nav a:hover {
  color: var(--primary-dark);
}

.nav-actions {
  display: flex;

  align-items: center;

  gap: 10px;
}

.theme-button,
.menu-button {
  border: none;

  background: var(--secondary);

  width: 42px;

  height: 42px;

  border-radius: 50%;

  cursor: pointer;
}

.menu-button {
  display: none;
}

/* ==================================================
   HERO SLIDER
================================================== */

.hero-slider {
  position: relative;

  width: 100%;

  height: 100vh;

  min-height: 650px;

  overflow: hidden;

  background: #33282d;
}

/* SLIDES */

.hero-slide {
  position: absolute;

  inset: 0;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;

  visibility: visible;
}

/* IMAGEM */

.hero-slide > img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: scale(1);

  transition: transform 6s ease;
}

.hero-slide.active > img {
  transform: scale(1.06);
}

/* CAMADA ESCURA */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(25, 15, 20, 0.78) 0%,
    rgba(25, 15, 20, 0.48) 45%,
    rgba(25, 15, 20, 0.12) 100%
  );
}

/* CONTEÚDO */

.hero-slide .hero-content {
  position: relative;

  z-index: 2;

  width: min(1180px, 92%);

  height: 100%;

  margin: auto;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  color: white;

  padding-top: 80px;
}

.eyebrow {
  display: inline-block;

  color: var(--primary-dark);

  font-weight: 700;

  font-size: 12px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  margin-bottom: 18px;
}

.hero-slide .eyebrow {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.3);

  backdrop-filter: blur(10px);

  padding: 9px 15px;

  border-radius: 50px;
}

.hero-slide h1 {
  max-width: 800px;

  font-family: var(--title-font);

  font-size: clamp(48px, 7vw, 82px);

  line-height: 1.03;

  font-weight: 600;

  margin-bottom: 25px;
}

.hero-slide h1 strong {
  display: block;

  color: #f3c4d6;

  font-weight: 600;
}

.hero-slide p {
  max-width: 580px;

  font-size: 18px;

  color: rgba(255, 255, 255, 0.92);

  margin-bottom: 32px;
}

/* BOTÕES */

.hero-buttons {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 25px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 700;

  border: 1px solid transparent;

  cursor: pointer;

  transition: 0.3s;
}

.btn-primary {
  background: var(--primary);

  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

.btn-outline {
  border-color: var(--primary);

  color: var(--primary-dark);
}

.hero-outline {
  color: white;

  border-color: white;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(8px);
}

.hero-outline:hover {
  background: white;

  color: var(--primary-dark);
}

.btn-white {
  background: white;

  color: var(--primary-dark);
}

.btn-full {
  width: 100%;
}

/* SETAS */

.slider-arrow {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  width: 52px;

  height: 52px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.35);

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(10px);

  color: white;

  font-size: 20px;

  cursor: pointer;

  transition: 0.3s;
}

.slider-arrow:hover {
  background: white;

  color: var(--primary-dark);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* INDICADORES */

.slider-dots {
  position: absolute;

  z-index: 10;

  bottom: 35px;

  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 10px;
}

.slider-dot {
  width: 35px;

  height: 4px;

  border: none;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.4);

  cursor: pointer;

  transition: 0.3s;
}

.slider-dot.active {
  width: 60px;

  background: white;
}

/* ==================================================
   TÍTULOS
================================================== */

.section-heading {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 40px;

  margin-bottom: 45px;
}

.section-heading.center {
  display: block;

  text-align: center;

  max-width: 700px;

  margin: 0 auto 55px;
}

.section-heading h2 {
  font-family: var(--title-font);

  font-size: clamp(36px, 5vw, 54px);

  line-height: 1.1;
}

.section-heading p {
  max-width: 400px;

  color: var(--text-light);
}

/* ==================================================
   CATEGORIAS
================================================== */

.categories {
  padding: 90px 0;

  background: var(--surface);
}

.category-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 15px;
}

.category-card {
  padding: 28px 15px;

  text-align: center;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  transition: 0.3s;
}

.category-card:hover {
  transform: translateY(-7px);

  box-shadow: var(--shadow);
}

.category-card > span {
  font-size: 35px;
}

.category-card h3 {
  font-size: 14px;

  margin-top: 10px;
}

.category-card p {
  color: var(--text-light);

  font-size: 11px;

  margin-top: 5px;
}

/* ==================================================
   PRODUTOS
================================================== */

.filters {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 40px;
}

.filter {
  border: 1px solid var(--border);

  background: var(--surface);

  padding: 10px 20px;

  border-radius: 50px;

  color: var(--text-light);

  cursor: pointer;

  transition: 0.3s;
}

.filter.active,
.filter:hover {
  background: var(--primary);

  color: white;

  border-color: var(--primary);
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.product-card {
  background: var(--surface);

  border-radius: var(--radius);

  overflow: hidden;

  border: 1px solid var(--border);

  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}

.product-image {
  height: 310px;

  position: relative;

  overflow: hidden;
}

.product-image img {
  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;

  top: 15px;

  left: 15px;

  padding: 7px 13px;

  background: white;

  border-radius: 50px;

  color: var(--primary-dark);

  font-size: 11px;

  font-weight: 700;
}

.product-content {
  padding: 25px;
}

.product-content > span {
  color: var(--primary);

  text-transform: uppercase;

  font-size: 10px;

  letter-spacing: 1px;

  font-weight: 700;
}

.product-content h3 {
  font-family: var(--title-font);

  font-size: 25px;

  margin: 8px 0;
}

.product-content p {
  color: var(--text-light);

  font-size: 13px;

  margin-bottom: 20px;
}

.product-button {
  background: none;

  border: none;

  color: var(--primary-dark);

  font-weight: 700;
}

/* ==================================================
   COMO FUNCIONA
================================================== */

.how-section {
  background: var(--secondary);
}

.steps {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.step {
  background: var(--surface);

  padding: 35px 25px;

  border-radius: var(--radius);

  position: relative;
}

.step-number {
  position: absolute;

  top: 20px;

  right: 20px;

  color: var(--primary);

  font-weight: 700;

  font-size: 12px;
}

.step > span {
  font-size: 35px;

  display: block;

  margin-bottom: 15px;
}

.step h3 {
  font-family: var(--title-font);

  font-size: 23px;

  margin-bottom: 10px;
}

.step p {
  color: var(--text-light);

  font-size: 13px;
}

/* ==================================================
   SOBRE
================================================== */

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.about-images {
  position: relative;
}

.about-images img {
  height: 600px;

  object-fit: cover;

  border-radius: 30px;
}

.about-badge {
  position: absolute;

  right: -25px;

  bottom: 40px;

  background: var(--primary);

  color: white;

  padding: 25px;

  border-radius: 20px;

  display: flex;

  flex-direction: column;
}

.about-badge strong {
  font-family: var(--title-font);

  font-size: 35px;
}

.about-badge span {
  font-size: 12px;
}

.about-content h2 {
  font-family: var(--title-font);

  font-size: clamp(38px, 5vw, 55px);

  line-height: 1.1;

  margin-bottom: 25px;
}

.about-content > p {
  color: var(--text-light);

  margin-bottom: 18px;
}

.about-list {
  margin-top: 30px;
}

.about-list div {
  display: flex;

  gap: 12px;

  align-items: center;

  margin-bottom: 12px;
}

.about-list span {
  color: var(--primary);

  font-weight: 700;
}

/* ==================================================
   DEPOIMENTOS
================================================== */

.testimonials {
  background: var(--surface);
}

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.testimonial {
  padding: 35px;

  background: var(--background);

  border-radius: var(--radius);
}

.stars {
  color: var(--primary);

  margin-bottom: 15px;
}

.testimonial p {
  color: var(--text-light);

  margin-bottom: 25px;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  font-size: 12px;

  color: var(--text-light);
}

/* ==================================================
   FAQ
================================================== */

.faq-container {
  max-width: 850px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;

  padding: 22px 0;

  background: none;

  border: none;

  display: flex;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;

  font-size: 16px;

  font-weight: 700;

  color: var(--text);

  text-align: left;
}

.faq-question span {
  color: var(--primary);

  font-size: 25px;

  transition: 0.3s;
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: 0.4s;
}

.faq-answer p {
  padding: 0 0 20px;

  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ==================================================
   ORÇAMENTO
================================================== */

.budget {
  background: var(--secondary);
}

.budget-container {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: center;
}

.budget-text h2 {
  font-family: var(--title-font);

  font-size: 55px;

  line-height: 1.1;

  margin-bottom: 20px;
}

.budget-text > p {
  color: var(--text-light);

  max-width: 500px;
}

.budget-contact {
  margin-top: 35px;
}

.budget-contact > div {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;
}

.budget-contact > div > span {
  background: white;

  width: 50px;

  height: 50px;

  display: grid;

  place-items: center;

  border-radius: 50%;
}

.budget-contact p {
  color: var(--text-light);

  font-size: 13px;
}

.budget-form {
  background: var(--surface);

  padding: 40px;

  border-radius: 30px;

  box-shadow: var(--shadow);
}

.budget-form label {
  display: block;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 18px;
}

.budget-form input,
.budget-form select,
.budget-form textarea {
  width: 100%;

  margin-top: 7px;

  border: 1px solid var(--border);

  background: var(--background);

  padding: 14px;

  border-radius: 12px;

  outline: none;

  color: var(--text);
}

.budget-form textarea {
  resize: vertical;
}

/* ==================================================
   CTA
================================================== */

.cta {
  background: var(--primary);

  color: white;

  padding: 100px 0;

  text-align: center;
}

.cta span {
  font-size: 13px;

  font-weight: 700;
}

.cta h2 {
  font-family: var(--title-font);

  font-size: clamp(40px, 6vw, 65px);

  max-width: 750px;

  margin: 15px auto 30px;

  line-height: 1.1;
}

/* ==================================================
   FOOTER
================================================== */

.footer {
  padding-top: 70px;

  background: #33282d;

  color: white;
}

.footer-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1.5fr;

  gap: 60px;

  padding-bottom: 60px;
}

.footer .logo span {
  color: white;
}

.footer p {
  color: #c7b9bf;

  max-width: 350px;

  margin-top: 20px;
}

.footer h3 {
  margin-bottom: 20px;
}

.footer-grid > div:not(:first-child) a {
  display: block;

  color: #c7b9bf;

  margin-bottom: 10px;

  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  padding: 20px;

  text-align: center;
}

.footer-bottom p {
  margin: auto;

  font-size: 12px;
}

/* ==================================================
   WHATSAPP
================================================== */

.whatsapp {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: #25d366;

  color: white;

  display: grid;

  place-items: center;

  font-size: 27px;

  z-index: 999;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==================================================
   MODAL
================================================== */

.modal {
  position: fixed;

  inset: 0;

  background: rgba(30, 20, 25, 0.7);

  display: none;

  place-items: center;

  padding: 20px;

  z-index: 2000;
}

.modal.active {
  display: grid;
}

.modal-content {
  background: var(--surface);

  padding: 45px;

  max-width: 500px;

  width: 100%;

  border-radius: 30px;

  position: relative;

  text-align: center;
}

.modal-content h2 {
  font-family: var(--title-font);

  font-size: 40px;

  margin-bottom: 15px;
}

.modal-content p {
  color: var(--text-light);

  margin-bottom: 25px;
}

.modal-close {
  position: absolute;

  right: 20px;

  top: 20px;

  border: none;

  background: var(--secondary);

  width: 40px;

  height: 40px;

  border-radius: 50%;

  cursor: pointer;

  font-size: 22px;
}

/* ==================================================
   MODO ESCURO
================================================== */

body.dark {
  --background: #201b1e;

  --surface: #2b2428;

  --text: #f7eef2;

  --text-light: #c5b8bd;

  --border: #44383e;

  --secondary: #3b2d34;
}

body.dark .header {
  background: rgba(32, 27, 30, 0.92);
}

body.dark .footer {
  background: #151214;
}

body.dark .product-image img {
  filter: brightness(0.85);
}

/* ==================================================
   RESPONSIVO
================================================== */

@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 13px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .budget-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    max-width: 650px;

    margin: auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .nav {
    position: fixed;

    top: 80px;

    left: 0;

    right: 0;

    background: var(--surface);

    border-bottom: 1px solid var(--border);

    padding: 25px;

    flex-direction: column;

    gap: 20px;

    display: none;

    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .hero-slide .hero-content {
    padding-top: 70px;
  }

  .hero-slide h1 {
    font-size: 48px;
  }

  .hero-slide p {
    font-size: 16px;
  }

  .slider-arrow {
    width: 44px;

    height: 44px;

    font-size: 15px;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }
}

@media (max-width: 600px) {
  .hero-slider {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(25, 15, 20, 0.8),
      rgba(25, 15, 20, 0.45)
    );
  }

  .hero-slide h1 {
    font-size: 42px;
  }

  .hero-slide p {
    max-width: 95%;

    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;

    width: 100%;

    max-width: 300px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .slider-dots {
    bottom: 22px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .about-images img {
    height: 450px;
  }

  .about-badge {
    right: 15px;

    bottom: 20px;
  }

  .budget-text h2 {
    font-size: 43px;
  }

  .budget-form {
    padding: 25px;
  }

  .whatsapp {
    width: 55px;

    height: 55px;

    right: 18px;

    bottom: 18px;
  }
}
