/* ============================================================
   VAELLUNE — Main Stylesheet
   Colors: Dark #0D0D0D / #1A1A1A, Skin/Beige #E8C9A0 / #F5EBD9, White #FFF, Green #2ECC71
   ============================================================ */

:root {
  --dark: #0D0D0D;
  --dark2: #1A1A1A;
  --dark3: #2A2A2A;
  --beige-light: #F5EBD9;
  --beige: #E8C9A0;
  --beige-dark: #C9A87A;
  --white: #FFFFFF;
  --green: #2ECC71;
  --green-dark: #25A55C;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');


/* ---- Reset & Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; border-radius: 5rem; }
::-webkit-scrollbar-thumb { background: #C9A87A; border-radius: 5rem; }
::-webkit-scrollbar-track { background: #2A2A2A; }
::-webkit-scrollbar-thumb:hover { background: #E8C9A0; }

/* ============================================================
   PACE LOADER
   ============================================================ */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #ffa857;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 100%;
  width: 100%;
  height: 4px;
}

.oldie .pace {
  display: none;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  z-index: 800;
  height: 100%;
  width: 100%;
  display: table;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.line-scale-pulse-out > div {
  background-color: #ffa857;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}

.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out > div:nth-child(1),
.line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

}

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

}

/* ============================================================
   WHATSAPP
   ============================================================ */
#whatsapp-container {
  z-index: 500;
  bottom: 40px; right: 40px;
  position: fixed;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
}
#whatsapp-container:hover { filter: brightness(90%); }
#whatsapp-container i {
  color: #fff;
  font-size: 32px;
}
.box {
  background: #25D366;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: bounce-6 2s ease infinite;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
@keyframes bounce-6 {
  0%, 50%, 100% { transform: translateY(0) scale(1); }
  10% { transform: translateY(-14px) scale(1); }
  30% { transform: translateY(0) scale(1); }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #e9bc92;
  color: black;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
}
.top-bar a { color: black; }
.top-bar a:hover { color: gray; }
.top-bar-text { opacity: 0.85; }
.top-bar-right { text-align: right; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-vaellune {
  background: black;
  padding: 14px 0;
  border-bottom: 1px solid white;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-brand img { height: 48px; }
.nav-vaellune { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; }
.nav-vaellune a {
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  transition: all 0.3s;
}
.nav-vaellune a:hover,
.nav-vaellune a.active { color: var(--beige); opacity: 1; }
.nav-vaellune .btn-compre {
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 1;
}

.btn-compre-2{
  color: black !important;
  background: #ffa857 !important;
}

.nav-vaellune .btn-compre:hover { background: var(--green-dark); color: var(--white); }
.nav-icon { cursor: pointer; color: var(--white); opacity: 0.85; }
.nav-icon:hover { opacity: 1; color: var(--beige); }

/* Mobile navbar toggle */
.navbar-toggler-vaellune {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 3px;
  display: none;
  width: 60px;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  margin-top: -5.4rem;
}
.hero-slide {
  position: relative;
  min-height: 79vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 910px;
  padding-left: 40px;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}
.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.85;
  line-height: 1.2;
  max-width: 650px;
}
.btn-hero {
  display: inline-block;
  background: #C18D5B;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 28px;
  transition: all 0.3s;
}
.btn-hero:hover { background: var(--beige); color: var(--dark); }

/* Slider dots */
.hero-dots {
  position: absolute;
  left: 20%;
  bottom: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

/* Social sidebar */
.hero-social {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-social a img { width: 30px; transition: opacity 0.3s; }
.hero-social a:hover img { opacity: .5; }

.filter-obscur{
  filter: brightness(80%);
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: black;
  padding: 36px 0;
}
.feature-item {
  text-align: center;
  padding: 0 0 !important;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.feature-item:last-child { border-right: none; }
.feature-icon { margin-bottom: 12px; }
.feature-icon img { width: 55px; }
.feature-item h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 12px;
  color: rgb(184, 184, 184);
  line-height: 1.5;
  max-width: 190px;
  margin: 0 auto;
}

/* ============================================================
   SOBRE SECTION (HOME)
   ============================================================ */
.sobre-home {
  background: url(../imgs/HOME/bg-2.png);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

.sobre-home h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 28px;
  max-width: 92%;
  letter-spacing: -1px;
}
.sobre-home h2 em { color: #D7924C; }
.sobre-home p {
  font-family: 'RNS Sanz';
  font-weight: lighter;
  font-size: 1.3rem;
  color: black;
  line-height: 1.3;
  margin-bottom: 16px;
}

/* ============================================================
   SOBRE A VAELLUNE SECTION
   ============================================================ */
.sobre-vaellune-section {
  background: var(--beige-light);
  overflow: hidden;
  position: relative;
}
.sobre-vaellune-section::before {
  content: 'V';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 500px;
  color: rgba(0,0,0,0.04);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.sobre-vaellune-img {
  position: relative;
}
.sobre-vaellune-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ============================================================
   SOBRE CARD (dark section)
   ============================================================ */
.sobre-card {
  background: #E9BC92;
  padding: 6rem 1rem 1rem 25rem;
}
.sobre-card h5 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 16px;
}
.sobre-card h5 span {
  font-weight: 300;
}

.sobre-card h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  color: black;
  margin-bottom: 20px;
}
.sobre-card h2 em { 
  color: white; 
}
.sobre-card p {
  font-size: 1rem;
  color: var(--dark3);
  line-height: 1.3;
  margin-bottom: 24px;
}
.btn-outline-dark-vaellune {
  display: inline-block;
  border: 1.5px solid white;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 24px;
  transition: all 0.3s;
}
.btn-outline-dark-vaellune:hover {
  background: var(--dark);
  color: var(--white);
}

/* ============================================================
   DESTAQUES (Carousel)
   ============================================================ */

.carousel-control-next-icon{
  background-image: url('../imgs/SETA-DIREITA.png') !important;
  height: 40px !important;
  width: 40px !important;
}
.carousel-control-prev-icon{
  background-image: url('../imgs/SETA-ESQUERDA.png') !important;
  height: 40px !important;
  width: 40px !important;
}

.carousel-control-next {
  right: -8rem !important;
  opacity: 1 !important;
}
.carousel-control-prev {
  left: -8rem !important;
  opacity: 1 !important;
}

.destaques-section {
  background: black;
  padding: 60px 0;
}
.section-title-center {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 36px;
  opacity: 0.8;
}
.section-title-center.dark { 
  color: black; 
  font-size: 1.3rem;
  font-weight: 400;
}
.destaques-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
}
.destaque-item {
  flex: 0 0 calc(33.333% - 14px);
}
.destaque-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.destaque-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.destaque-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.destaque-arrow:hover { opacity: 1; }
.destaque-arrow img { width: 28px; filter: brightness(0) invert(1); }

/* ============================================================
   SOLUÇÕES
   ============================================================ */
.solucoes-section { background: black; padding: 56px 0 72px; }
.solucoes-section .sec-title-center {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 36px;
  opacity: 0.8;
}
.sol-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }

/* Card: foto em cima + legenda embaixo */
.sol-item { cursor: pointer; display: flex; flex-direction: column; }
.sol-item:hover .sol-thumb { transform: scale(1.05); }
.sol-thumb-wrap { overflow: hidden; flex-shrink: 0; }
.sol-thumb {
  width: 100%; height: auto; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.sol-caption {
  background: #FCEEE3;
  padding: 14px 14px 12px;
  flex: 1; display: flex; flex-direction: column;
}
.sol-caption h5 {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--preto); margin-bottom: 5px;
}
.sol-caption p {
  font-size: 10px; color: var(--texto-medio);
  line-height: 1.45; margin-bottom: 10px; flex: 1;
}
.sol-caption .sol-arrow {
  width: 18px; display: block;
  filter: brightness(0); opacity: .6;
}

.sol-arrow {
  display: block;
  margin-left: auto;
}

/* ============================================================
   RECOMENDAÇÕES
   ============================================================ */
.recomendacoes-section {
  background: #E9BC92;
  padding: 3rem 0 80px;
}
.rec-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 20px;
}
.rec-avatar { width: auto; height: 9rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.rec-quote {
    display: block;
    position: absolute;
    left: -4rem;
    top: .8rem;
}
.rec-text { font-size: 1.1rem; color: var(--text-mid); line-height: 1.2; margin-bottom: 12px; }
.rec-name { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: black; margin-bottom: 0;}
.rec-role { font-size: 10px; color: black; text-transform: uppercase; letter-spacing: 0.5px; }
.rec-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: all 0.3s; }
.rec-dot.active { background: var(--dark); }

.carousel-indicators li {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin-bottom: -2rem;
}
/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: url(../imgs/bg-ft.png);
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-logo img { height: 52px; margin-bottom: 0; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social img { width: 25px; opacity: 1; transition: opacity 0.3s; }
.footer-social a:hover img { opacity: 1; }

.footer-col h5 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0; }
.footer-col ul li a {
  color: white;
  font-size: .8rem;
  line-height: 1.6;
  transition: color 0.3s;
  font-family: 'Bodoni Moda', serif;

}
.footer-col ul li a:hover { color: var(--beige); }
.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  line-height: 1.8;
}

/* ============================================================
   BANNER PAGES (Sobre, Empresas, Produtos, Contato)
   ============================================================ */
.page-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-banner-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.page-banner-content h1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ============================================================
   VAELLUNE PAGE (Sobre)
   ============================================================ */
.vaellune-intro {
  background: url(../imgs/VAELLUNE/bg-vae.png);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

.vaellune-intro .logo-text {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--dark);
  display: block;
}
.vaellune-intro .tagline {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}
.vaellune-intro h2 {
  font-family: 'Bodoni Moda', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto 32px;
}
.vaellune-intro p {
  font-size: 15px;
  font-family: 'RNS Sanz';
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 16px;
}

.beleza-asiatica {
  background: #E9BC92;
  padding: 80px 0;
  overflow: hidden;
}

.img-flut-1{
    position: absolute;
    top: 87rem;
    left: 40rem;
    z-index: 99;
}
.img-flut-2{
    position: absolute;
    top: 77rem;
    right: 21rem;
}


.beleza-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  height: 500px;
}
.beleza-photo-main {
  grid-row: 1 / 3;
  overflow: hidden;
}
.beleza-photo-main img,
.beleza-photo-top img,
.beleza-photo-bot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.beleza-photo-top, .beleza-photo-bot {
  padding: 8px;
  overflow: hidden;
}
.beleza-asiatica h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.beleza-asiatica h2 em { font-style: italic; font-weight: 400; }
.beleza-asiatica p {
  font-size: 13px;
  color: var(--dark3);
  line-height: 1.9;
  margin-bottom: 16px;
}

.page-banner-content h1{
  font-size: 1.5rem;
  font-family: 'RNS Sanz';
  font-weight: 300;
}
.page-banner-content h1 span{
  font-weight: 800;
}

/* ============================================================
   EMPRESAS PAGE
   ============================================================ */
.empresas-intro {
  background: var(--beige-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}



.empresas-intro h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 28px;
  text-align: center;
}
.empresas-intro p {
  font-size: 15px;
  color: black;
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: justify;
}
.empresas-photo-circle img {
  border-radius: 50%;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
}
.empresas-cta {
  background: #E9BC92;
  padding: 60px 0;
  text-align: center;
}
.empresas-cta h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  margin-right: 16rem;
}
.empresas-cta h2 strong { font-weight: 700; text-decoration: underline; font-style: italic; }

/* ============================================================
   PRODUTOS PAGE
   ============================================================ */
.produtos-intro {
  background: url(../imgs/PRODUTOS/bg.png);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}

.produtos-intro h2 {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}
.produtos-intro p {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: justify;
}

.como-funciona {
  background: var(--beige);
  overflow: hidden;
}
.como-funciona-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.5;
  margin-bottom: 12px;
}
.como-funciona h2 {
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 24px;
}
.como-funciona h2 em { color: white; }
.como-funciona p {
  font-size: 15px;
  color: black;
  line-height: 1.7;
  margin-bottom: 14px;
  text-align: justify;
}
.como-funciona-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.pl-mod-prod{
  padding: 0rem 70px 0rem 320px !important;
}

/* ============================================================
   CONTATO PAGE
   ============================================================ */
.contato-hero {
  background: black;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.contato-hero h2 {
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 28px;
}
.contato-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}
.contato-hero .cta-text {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 28px;
  text-align: center;
}

.contato-form-section {
  background: var(--beige-light);
  padding: 80px 0;
}
.contato-info h2 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.contato-info p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}
.contato-info .contact-data {
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 4px;
  font-weight: 500;
}

.form-label-vaellune {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-control-vaellune {
  width: 100%;
  background: var(--beige);
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--dark);
  font-family: var(--font-sans);
  outline: none;
  transition: all 0.3s;
  margin-bottom: 12px;
}
.form-control-vaellune::placeholder { color: rgba(0,0,0,0.4); }
.form-control-vaellune:focus { background: var(--beige-dark); }
textarea.form-control-vaellune { resize: vertical; min-height: 140px; }
.btn-enviar {
  background: black;
  color: var(--white);
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-enviar:hover { background: var(--dark3); }

.contato-nota {
  background: #060606;
  padding: 32px 0;
  text-align: center;
}
.contato-nota p {
  color: white;
  font-size: 14px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.btn-vaellune {
  display: inline-block;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 24px;
  transition: all 0.3s;
}
.btn-vaellune:hover { background: var(--white); color: var(--dark); }



/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1366px) {
.img-flut-1 {
    top: 85rem;
    left: 22rem;
  }
  .img-flut-2 {
    top: 76rem;
    right: 0rem;
  }
  .pl-mod-prod {
    padding: 1rem 3rem 1rem 3rem !important;
  }
}

@media (max-width: 991px) {
  .hero-content h1 { font-size: 34px; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-vaellune { display: none; flex-direction: column; gap: 16px; position: absolute; top: 100%; left: 0; right: 0; background: black; padding: 20px; z-index: 200; }
  .nav-vaellune.open { display: flex; }
  .navbar-toggler-vaellune { display: block; }
  .navbar-vaellune { position: relative; }
  .carousel-control-next {
    right: 0 !important;
  }
  .carousel-control-prev {
    left: 0 !important;
  }
  .rec-avatar {
    height: 6.5rem;
  }
  .rec-quote {
    left: -3.5rem;
    top: 3.5rem;
  }
  .sobre-home h2 {
    max-width: 100%;
  }
  .sobre-card {
    padding: 2rem;
  }
  .sobre-vaellune-img img {
    height: auto;
  }
  .pl-mod-prod {
    padding: 2rem !important;
  }
  .empresas-cta h2 {
    font-size: 25px;
    margin-right: 0;
  }
  .hero-social{
    right: 5%;
  }
  .hero-dots{
    left: 5%;
  }
}
@media (max-width: 767px) {
  .hero-slide { min-height: 75vh; }
  .hero-content h1 { font-size: 28px; }
  .hero-content { padding-left: 20px; }
  .solucoes-grid { grid-template-columns: repeat(2, 1fr); }
  .destaques-track { gap: 10px; }
  .destaque-item { flex: 0 0 100%; }
  .features-bar .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; }
  .contato-info h2 { font-size: 40px; }
  .vaellune-intro .logo-text { font-size: 36px; }
  .page-banner { height: 240px; }
  #whatsapp-container { bottom: 18px; right: 18px; width: 48px; height: 48px; }
  #whatsapp-container i { font-size: 24px; }
}
@media (max-width: 540px) {
  .solucoes-grid { grid-template-columns: 1fr 1fr; }
  .top-bar-right { display: none; }
}
