/* ===== VARIÁVEIS ===== */
:root {
  --primary: #55142A;
  --primary-light: #7a1f3e;
  --primary-dark: #3d0e1e;
  --bg: #FFFEF9;
  --bg-alt: #faf7f4;
  --accent: #C4A35A;
  --text-dark: #2C1810;
  --text-body: #5a4a4a;
  --text-muted: #8a7878;
  --text-light: #FFFEF9;
  --border: rgba(85, 20, 42, 0.15);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(85, 20, 42, .08);
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(85, 20, 42, .14);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 3px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all .3s;
}

/* Link Vitrine no header */
.nav-vitrine {
  background: var(--primary);
  color: var(--text-light) !important;
  padding: .35rem .9rem !important;
  border-radius: 2px;
  transition: background .3s !important;
}

.nav-vitrine:hover {
  background: var(--primary-dark) !important;
  color: var(--text-light) !important;
}

.nav-vitrine::after {
  display: none !important;
}

/* ===== HERO ===== */
#hero {
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

/* bloco do topo: badge + h1 */
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* bloco da base: h2 + slogan + botões */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-top h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .25);
}

.hero-bottom h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1rem;
  line-height: 1.55;
  max-width: 680px;
}

.hero-slogan {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: .85rem 2rem;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .3s, transform .2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: .85rem 2rem;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Botões dentro da hero — versão clara */
.hero-buttons .btn-outline {
  border-color: rgba(255, 255, 255, .8);
  color: rgba(255, 255, 255, .9);
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: #fff;
}

/* ===== GALERIA CARROSSEL (após hero) ===== */
#galeria {
  padding: 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.galeria-carousel {
  position: relative;
  width: 100%;
  display: grid;
}

.galeria-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.galeria-slide.active {
  opacity: 1;
}

.galeria-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.galeria-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}

.galeria-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}

.galeria-dot.active {
  background: white;
  transform: scale(1.3);
}

/* ===== TRANSIÇÃO ===== */
#transicao {
  padding: 0;
  position: relative;
  min-height: clamp(280px, 40vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #7a1f3e 100%);
  text-align: center;
}

.transicao-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  max-width: 700px;
}

.transicao-inner .section-label {
  color: rgba(255, 255, 255, .6);
}

.transicao-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: white;
  line-height: 1.25;
  margin: .5rem 0 1.5rem;
  font-style: italic;
}

.transicao-inner p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.transicao-inner .btn-transicao {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, .7);
  color: white;
  padding: .8rem 2rem;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .3s, border-color .3s;
}

.transicao-inner .btn-transicao:hover {
  background: rgba(255, 255, 255, .12);
  border-color: white;
}

/* ===== SEÇÕES — BASE ===== */
section {
  padding: 6rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .8rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.divider {
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin: .8rem 0 2rem;
}

/* ===== SOBRE ===== */
#sobre {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-story {
  font-size: .93rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.about-story strong {
  color: var(--primary);
}

.about-brand-img {
  width: 100%;
  border-radius: 4px;
  margin-top: .5rem;
  box-shadow: 0 8px 30px rgba(85, 20, 42, .15);
}

.mvv-grid {
  display: grid;
  gap: 1.2rem;
}

.mvv-grid-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.mvv-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  padding: 1.4rem 1.6rem;
  border-radius: 0 4px 4px 0;
  transition: box-shadow .3s;
}

.mvv-item:hover {
  box-shadow: 0 4px 20px rgba(85, 20, 42, .08);
}

.mvv-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
}

.mvv-item p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== VALORES ===== */
#valores {
  background: var(--primary);
  color: var(--text-light);
}

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

.value-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  transition: background .3s, transform .2s;
}

.value-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-3px);
}

.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .2);
  line-height: 1;
  margin-bottom: .4rem;
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: .7rem;
}

.value-card p {
  font-size: .82rem;
  opacity: .8;
  line-height: 1.7;
}

/* ===== COLEÇÃO ===== */
#colecao {
  background: var(--bg-alt);
}

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

.collection-header .divider {
  margin: .8rem auto 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(85, 20, 42, .13);
}

.product-image {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image--photo {
  height: 220px;
}

.product-image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.product-card:hover .product-image--photo img {
  transform: scale(1.06);
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent);
}

.product-icon {
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
}

.product-info {
  padding: 1.4rem 1.2rem;
}

.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
}

.product-info p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  background: var(--bg);
}

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

.testimonials-header .divider {
  margin: .8rem auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.testimonial-card {
  background: var(--bg-alt);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(85, 20, 42, .08);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: .2;
  line-height: 1;
  margin-bottom: -.8rem;
}

.testimonial-text {
  font-size: .88rem;
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: .85rem;
  margin-bottom: .8rem;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--primary);
}

.testimonial-age {
  font-size: .76rem;
  color: var(--text-muted);
}

/* ===== CONTATO ===== */
#contato {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: .5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(85, 20, 42, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item-text h3 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .3rem;
}

.contact-item-text p,
.contact-item-text a {
  font-size: .9rem;
  color: var(--text-body);
  text-decoration: none;
  line-height: 1.6;
  transition: color .3s;
}

.contact-item-text a:hover {
  color: var(--primary);
}

.contact-card {
  background: var(--primary);
  padding: 2.5rem;
  border-radius: 4px;
  color: var(--text-light);
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.contact-card>p {
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: .85rem 1.8rem;
  border-radius: 2px;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background .3s, transform .2s;
  margin-bottom: 1.2rem;
}

.contact-whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.contact-whatsapp-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .12);
  color: white;
  text-decoration: none;
  padding: .55rem 1.1rem;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background .3s;
}

.social-link:hover {
  background: rgba(255, 255, 255, .22);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 1.8rem;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.footer-brand p {
  font-size: .82rem;
  opacity: .7;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, .68);
  font-size: .83rem;
  transition: color .3s;
}

.footer-col ul a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  opacity: .55;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
  transition: background .3s, box-shadow .3s;
}

.whatsapp-float a:hover {
  background: #1ebe5c;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .45);
}

.whatsapp-float a svg {
  width: 28px;
  height: 28px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.2rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 4rem 1.2rem;
  }

  .hero-content {
    padding: 5.5rem 1.2rem 3rem;
    gap: 2rem;
  }

  .hero-top h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
    letter-spacing: 6px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mvv-grid-row {
    grid-template-columns: 1fr;
  }

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

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .galeria-carousel {
    /* altura automática pela imagem */
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
  }

  .social-links {
    flex-direction: column;
  }
}
