/* ══════════════════════════════════════════
   Forma Sete — style.css
   Paleta: creme, dourado, carvão, branco
   Fonte: Cormorant Garamond + Montserrat
══════════════════════════════════════════ */

@font-face {
    font-family: 'Zekton';
    src:url('../font/Zekton.ttf.woff') format('woff'),
        url('../font/Zekton.ttf.svg#Zekton') format('svg'),
        url('../font/Zekton.ttf.eot'),
        url('../font/Zekton.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}



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

:root {
  --cream:       #F5EFE6;
  --cream-dark:  #EDE3D4;
  --gold:        #C49A4B;
  --gold-light:  #D4AF6A;
  --charcoal:    #1A1A1A;
  --charcoal-mid:#2E2E2E;
  --muted:       #7A7066;
  --white:       #FFFFFF;
  --card-bg:     #FDFAF6;
  --border:      rgba(196,154,75,0.25);
  --fsete-yellow: #FFCA05;


  --font-display: 'Zekton';
  --font-body:    'Montserrat', sans-serif;

  --radius:      4px;
  --transition:  0.35s ease;
  --shadow:      0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.container-vid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  margin-top: 16px;
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 16px auto 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-primary.btn-light {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-primary.btn-light:hover {
  background: transparent;
  color: var(--white);
}
.btn-primary.btn-full { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-card {
  display: inline-block;
  padding: 12px 28px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-card:hover { background: var(--gold); color: var(--white); }

/* ══════════════════════
   NAVBAR
══════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.btn-nav {
  padding: 10px 24px;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius);
  color: var(--gold) !important;
}
.btn-nav:hover {
  background: var(--gold);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/forma-sete-ambientes-slider.jpg') center/cover no-repeat;
}
.tamanho-logo{
  height: 45px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(20,18,14,0.82) 0%,
    rgba(20,18,14,0.50) 60%,
    rgba(20,18,14,0.20) 100%
  );
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.shape-1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--cream); bottom: 50px; right: 200px; }
.shape-3 { width: 200px; height: 200px; background: var(--gold-light); bottom: 200px; left: 100px; }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 5% 80px;
}
.hero-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

/* Container que vai segurar o vídeo */
.video-container {
    margin-top: 15px;
    position: relative;
    width: 100%;
    height: 430px; /* Ou a altura que você desejar para essa seção */
    overflow: hidden; /* Garante que o vídeo não "vaze" para fora da div */
    background-color: #000000; /* Fundo preto de segurança enquanto o vídeo carrega */
}

/* O vídeo em si */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Faz o vídeo preencher todo o espaço da div sem distorcer as proporções */
    object-fit: cover; 
    z-index: 1;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Hero reveal stagger */
.hero-content .reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.25s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.4s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.55s; }

/* ══════════════════════
   STATS
══════════════════════ */
.stats {
  background: var(--charcoal);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.stat-card {
  background: var(--charcoal);
  padding: 40px 30px;
  text-align: center;
}
.stat-card p {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

/* ══════════════════════
   ABOUT
══════════════════════ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 50px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  min-height: 540px;
}
.about-img-card {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.card-main {
  width: 78%;
  height: 480px;
  top: 0; left: 0;
  box-shadow: var(--shadow-lg);
}
.card-accent {
  width: 52%;
  height: 260px;
  bottom: -30px;
  right: 0;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  padding: 12px 22px;
  display: flex;
  gap: 16px;
  white-space: nowrap;
  z-index: 10;
}
.about-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.about-badge span + span::before {
  content: '|';
  margin-right: 16px;
  opacity: 0.5;
}
.about-text p {
  color: var(--muted);
  margin: 16px 0;
  font-size: 14px;
}
.about-text .btn-primary { margin-top: 20px; }

/* ══════════════════════
   COLEÇÕES
══════════════════════ */
.colecoes {
  padding: 120px 0;
  background: var(--cream);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--card-bg);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.card-img img { transition: transform 0.6s ease; }
.product-card:hover .card-img img { transform: scale(1.06); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .card-overlay { opacity: 1; }
.card-info { padding: 24px 22px 28px; }
.card-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.card-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 6px 0 8px;
}
.card-info p { font-size: 13px; color: var(--muted); }

/* ══════════════════════
   PROCESSO
══════════════════════ */
.processo {
  padding: 120px 0;
  background: var(--charcoal);
}
.processo .section-label { color: var(--gold-light); }
.processo .section-title { color: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.step {
  padding: 48px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background var(--transition);
}
.step:hover { background: rgba(196,154,75,0.08); }
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ══════════════════════
   BANNER CTA
══════════════════════ */
.banner-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #9A7233 100%);
  padding: 80px 5%;
  text-align: center;
}
.banner-inner { max-width: 600px; margin: 0 auto; }
.banner-cta .section-label { color: rgba(255,255,255,0.7); }
.banner-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin: 10px 0 16px;
}
.banner-cta h2 em { font-style: italic; }
.banner-cta p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ══════════════════════
   DEPOIMENTOS
══════════════════════ */
.depoimentos {
  padding: 120px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow); }
.testimonial.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.testimonial.featured p { color: rgba(255,255,255,0.75); }
.testimonial.featured .client strong { color: var(--white); }
.testimonial.featured .client span { color: rgba(255,255,255,0.4); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial > p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.client { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.client strong { display: block; font-size: 13px; font-weight: 600; }
.client span { font-size: 11px; color: var(--muted); }

/* ══════════════════════
   CONTATO
══════════════════════ */
.contato {
  padding: 120px 0;
  background: var(--cream);
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contato-text p { color: var(--muted); font-size: 14px; margin: 16px 0 32px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.contact-icon { font-size: 1rem; color: var(--gold); width: 20px; text-align: center; }

/* Form */
.contato-form {
  background: var(--white);
  padding: 48px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group select { cursor: pointer; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ══════════════════════
   FOOTER
══════════════════════ */
.footer {
  background: var(--charcoal-mid);
  color: rgba(255,255,255,0.55);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.socials { display: flex; gap: 12px; margin-top: 24px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li + li { margin-top: 10px; font-size: 13px;}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; letter-spacing: 1px; }

/* ══════════════════════
   RESPONSIVE — TABLET
══════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr;}
  .about-img-wrap { min-height: 400px; }
  .card-main { height: 370px; width: 75%; }
  .contato-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════
   RESPONSIVE — MOBILE
══════════════════════ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .nav-links.open {
    max-height: 400px;
    padding: 20px 0 30px;
  }
  .nav-links a {
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .btn-nav {
    margin-top: 10px;
    width: auto !important;
    padding: 12px 30px !important;
  }
  .hamburger { display: flex; }

  .video-container {
      position: relative;
      width: 100%;
      height: 230px; /* Ou a altura que você desejar para essa seção */
      overflow: hidden; /* Garante que o vídeo não "vaze" para fora da div */
  }

  /* Hero */
  .hero-content { padding: 100px 5% 60px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas a { width: 100%; text-align: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.8rem; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 36px 24px; }

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

  /* Form */
  .contato-form { padding: 32px 24px; }

  /* About */
  .about-img-wrap { min-height: 320px; }
  .card-main { width: 85%; height: 300px; }
  .card-accent { width: 55%; height: 200px; bottom: -20px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .section-title { font-size: 1.8rem; }
  .about-img-wrap { display: none; } /* hide on very small; optional */
  .contato-form { padding: 24px 16px; }
}
