/* ================================
   VARIÁVEIS — IDENTIDADE VISUAL
================================ */
:root {
  /* FUNDOS */
  --bg-light: #EFE6D8;     /* nude champagne */
  --bg-soft: #F7F2EB;      /* off-white quente */
  --bg-dark: #EFE6D8;      /* mantido claro (sem preto) */

  /* DOURADOS */
  --gold-primary: #C9A24D; /* dourado principal */
  --gold-soft: #E6D3A3;    /* dourado claro de apoio */

  /* TEXTO */
  --text-main: #5A554F;    /* cinza quente */
  --text-light: #FFFFFF;

  /* APOIO */
  --shadow-soft: rgba(0, 0, 0, 0.18);
}


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

/* ================================
   BASE
================================ */
body {
  background: linear-gradient(
    to bottom,
    var(--bg-light) 0%,
    var(--bg-soft) 100%
  );
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}


h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-primary);
}


/* ================= HERO ================= */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8vh 0;
  background: var(--bg-light);
}

/* CARD */

.hero-frame {
  width: 480px;
  max-width: 90%;
  height: 720px;

  background: var(--bg-soft);
  border-radius: 24px;
  overflow: hidden;

  border: 2px solid var(--gold-primary);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);

  display: flex;
  flex-direction: column;
  transition: transform .4s ease;
}

.hero-bubble {
  height: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 80%;
  height: 80%;
  object-fit: contain;
  opacity: .45;
}


.hero-frame:hover .hero-bubble {
  background: linear-gradient(
    to bottom,
    #f5ecd9,
    #efe3c8
  );
}



/* FOTO */

.hero-img {
  width: 100%;
  height: 75%;
  object-fit: cover;
  display: block;
}

.hero-img {
  transition: transform .6s ease;
}

.hero-frame:hover .hero-img {
  transform: scale(1.06);
}

/* BOLHA */

.hero-logo {
  width: 70%;
  max-width: 220px;
  opacity: .45;
}


/* MOBILE */

@media (max-width:768px){
  .hero-frame {
    height: auto;
  }

  .hero-img {
    height: auto;
  }

  .hero-bubble {
    padding: 2rem 0;
  }
}


/* FOTO */

.hero-photo {
  flex: 1;
  overflow: hidden;
}

/* TEXTO */

.hero-content {
  margin-top: 2rem;
  text-align: center;
}

.hero-content h1 {
  color: var(--gold-primary);
}

.hero-content p {
  color: var(--text-main);
}

/* MOBILE */

@media(max-width:768px){
  .hero-frame{width:90%}
}


/* IMAGEM */

.hero-img,
.catalog-card img,
.highlight-card img {
  pointer-events: none;
}


/* TEXTO DO HERO */
.hero-content {
  max-width: 700px;
  text-align: center;
  color: var(--text-main);
}

.hero-content h1 {
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.hero-content p {
  color: var(--text-main); /* nude/off-white quente */
  font-weight: 500;
}



/* ================================
   SEÇÕES
================================ */
.section {
  padding: 6rem 10%;
}

.bg-soft {
  background: var(--bg-light);
}

.about {
  text-align: center;
}

.about-intro {
  max-width: 720px;
  margin: 1.5rem auto 3rem;
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.about-card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-card h3 {
  margin-bottom: 0.8rem;
  color: var(--gold-primary);
}

.about-card p {
  color: var(--text-main);
  line-height: 1.6;
}


.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.record-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  transition: transform 0.4s ease;
}

.record-card {
  border: 2px solid var(--gold-primary);
}

.record-card:hover {
  transform: translateY(-4px);
}

.record-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}


/* ================================
   RELATOS
================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-print {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.testimonial-print:hover {
  transform: translateY(-4px);
}

.testimonial-print {
  border: 2px solid var(--gold-primary);
}


.testimonial-print img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ================================
   GALERIA
================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* ================================
   CATÁLOGOS
================================ */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.catalog-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 2px solid var(--gold-primary);
  padding: 0;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.catalog-card img {
  width: 100%;
  height: 400px;

  object-fit: cover;
  display: block;
}


.catalog-card h3 {
  padding: 1rem;

  color: var(--gold-primary);

  font-weight: 600;
  letter-spacing: 0.5px;

  text-shadow: 0 1px 1px rgba(0,0,0,0.12);
}


.catalog-card p {
  padding: 0 1rem 1.5rem;
  color: var(--text-main);
}

/* ================================
   CTA / BOTÕES
================================ */
.cta {
  text-align: center;
  padding: 6rem 10%;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;

  background: var(--gold-primary);   /* dourado */
  color: #ffffff;                   /* texto branco */

  text-decoration: none;
  border-radius: 30px;

  border: 2px solid #ffffff;        /* 👈 borda branca inicial */

  transition: all .35s ease;
}

/* hover para TODOS */
.btn:hover {
  background: var(--bg-soft);       /* off white */
  color: var(--gold-primary);      /* texto dourado */

  border-color: var(--gold-primary); /* 👈 borda vira dourada */

  transform: translateY(-2px);
}




/* ================================
   ANIMAÇÕES
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 768px) {
  .hero-frame {
    width: 90%;
    margin-bottom: 4vh;
  }

  .hero-img {
    object-position: center top;
  }

  .section {
    padding: 4rem 6%;
  }

  .hero-content {
    padding: 1.5rem;
  }
}

.catalog-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}


.highlight-card {
  background: var(--bg-soft);
  border-radius: 24px;
  overflow: hidden;

  border: 2px solid var(--gold-primary); /* 👈 BORDINHA DOURADA */

  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .catalog-highlight {
    gap: 1.5rem;
  }
}

/* ===== MOBILE: imagens grandes como na home ===== */
@media (max-width: 768px) {

  .catalog-highlight {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .highlight-card {
    width: 100%;
  }

  .highlight-card img {
    width: 100%;
    height: auto;
  }

}

/* ===== DOURADO PREMIUM PARA TEXTOS ===== */

.gold-text,
.hero-content h1,
.section h2,
.section p,
.catalog-intro,
.catalog-description {

  color: var(--gold-primary);

  text-shadow:
    0 1px 0 rgba(255,255,255,0.5),
    0 2px 4px rgba(0,0,0,0.08);
}

/* FRASE INSTITUCIONAL (igual home) */

.catalog-intro {
  max-width: 900px;
  margin: 2rem auto;

  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;

  letter-spacing: 0.04em;
  line-height: 1.9;

  text-align: center;

  color: var(--gold-primary);

  text-shadow:
    0 1px 0 rgba(255,255,255,0.5),
    0 2px 4px rgba(0,0,0,0.08);
}

/* CTA institucional (igual headline da home) */

.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;

  letter-spacing: 0.05em;
  line-height: 1.8;

  color: var(--gold-primary);

  text-align: center;

  margin-bottom: 2rem;

  text-shadow:
    0 1px 0 rgba(255,255,255,0.5),
    0 2px 4px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {

  .hero::before {
    content: "";
    display: block;

    width: 160px;
    height: 160px;

    margin: 1.5rem auto 0;

    background-image: url("../assets/logo.png"); /* 👈 sua imagem aqui */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0.6;
  }

}

.about-card {
  transition: transform .4s ease, box-shadow .4s ease;
}

.about-card:hover {
  transform: translateY(-4px) scale(1.01);
}

@media (max-width: 768px) {
  .hero-frame::after {
    width: 150px;
    height: 150px;
    bottom: 25px;
    opacity: 0.45;
  }
}

