/* =========================================================
   CHELLY - Landing Page - Diego C. Ferreira
   ========================================================= */
:root {
  --green-950: #061b11;
  --green-900: #082318;
  --green-850: #0b2a1d;
  --green-800: #0f3425;
  --gold: #dca33a;
  --gold-light: #efc45c;
  --cream: #f0e5d9;
  --white: #fff;
  --text: #f8f4ec;
  --muted: #d6d0c5;
  --border: rgba(220, 163, 58, .55);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
}

.hero-content,
.choice-card > div,
.value > div,
.footer > * {
  min-width: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */
.header {
  min-height: 102px;
  padding: 0 max(5vw, 32px);
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  border-bottom: 1px solid rgba(220, 163, 58, .2);
  background: #061a10;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-mark {
  width: 82px;
  height: 82px;
  border: 0px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif);
  line-height: .8;
}

.brand-mark span {
  font-size: 28px;
}

.brand-mark strong {
  font-size: 23px;
  font-weight: 500;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 55px);
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding: 38px 0;
  transition: color .25s;
}

.nav a:hover,
.nav a.active {
  color: var(--gold-light);
}

.nav a.active::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 27px;
  background: var(--gold);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.header-actions a {
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}

/* HERO */
.hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(24, 65, 43, .45), transparent 45%),
    linear-gradient(120deg, #09271b, #061d13 55%, #0b291c);

   /* --- ADICIONE AS LINHAS ABAIXO --- */
  background-image: url('./img/banner.png'); /* Altere para o caminho da sua imagem */
  background-size: cover;       /* Faz a imagem cobrir toda a tela sem distorcer */
  background-position: center;  /* Centraliza a imagem na tela */
  background-repeat: no-repeat; /* Impede que a imagem fique se repetindo */
}

/* Conteúdo principal do Hero */
.hero-content {
  z-index: 5;
  width: min(800px, 60%);
  text-align: center;
  padding-bottom: 35px;
  font-family: var(--serif);
}

body .hero-content {
  text-align: center;
  font-family: 'Montserrat', sans-serif !important;
    margin-top: 0 !important;
  }

body .hero-content h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: 3.0rem;
  font-weight: 100 !important;
}

body .hero-content h1 em {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 50 !important;
}

.hero-logo {
  width: 158px;
  height: 158px;
  margin: 0 auto 16px;
  border: 0px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
}

.hero-logo span {
  font-size: 56px;
  line-height: .65;
}

.hero-logo strong {
  font-size: 43px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 74px);
  line-height: .95;
  font-weight: 600;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 600;
}

.hero p {
  margin-top: 13px;
  font-size: clamp(15px, 1.5vw, 21px);
  color: #eee9df;
}

.botanical {
  position: absolute;
  color: #a9771d;
  opacity: .6;
  font-size: 150px;
  z-index: 1;
}

.botanical-left {
  left: -25px;
  top: 30px;
  transform: rotate(-25deg);
}

.botanical-right {
  right: -20px;
  top: 20px;
  transform: rotate(20deg);
}

/* Produtos decorativos do hero */

.hero-product {
  position: absolute;
  bottom: 28px;
  width: 390px;
  height: 280px;
  z-index: 3;
}

.hero-left {
  left: -15px;
}

.hero-right {
  right: -15px;
}

.cup {
  position: absolute;
  bottom: 0;
  width: 110px;
  height: 82px;
  background: #eee9df;
  color: #7e602c;
  border-radius: 10px 10px 38px 38px;
  text-align: center;
  padding-top: 18px;
  font-family: var(--serif);
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.cup small {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 2px;
}

.hero-left .cup {
  left: 25px;
}

.hero-right .cup {
  right: 40px;
}

.bottle {
  position: absolute;
  bottom: 50px;
  border-radius: 14px 14px 8px 8px;
  box-shadow: 10px 10px 20px rgba(0,0,0,.25);
}

.bottle-dark {
  width: 65px;
  height: 175px;
  left: 245px;
  background: linear-gradient(90deg, #070b08, #33271a, #080b08);
}

.bottle-clear {
  width: 75px;
  height: 160px;
  left: 150px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(230,187,125,.7), rgba(255,255,255,.15));
  border: 1px solid rgba(255,255,255,.25);
}

.bottle::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 45px;
  left: 50%;
  transform: translateX(-50%);
  top: -42px;
  background: linear-gradient(90deg, #9a5e16, #e4a941, #8e5211);
  border-radius: 7px 7px 3px 3px;
}

.gift-bow {
  position: absolute;
  width: 110px;
  height: 55px;
  left: 0;
  bottom: 165px;
  border: 17px solid #0b2117;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.present {
  position: absolute;
  width: 170px;
  height: 145px;
  right: 5px;
  bottom: 25px;
  background: linear-gradient(135deg, #d7a74e, #9b6d24);
  box-shadow: 10px 15px 30px rgba(0,0,0,.3);
}

.present::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 100%;
  left: 70px;
  background: rgba(8, 35, 24, .9);
}

.ribbon {
  position: absolute;
  width: 160px;
  height: 35px;
  left: 5px;
  top: -14px;
  background: #0a281a;
  border-radius: 50%;
  z-index: 2;
}

.perfume {
  position: absolute;
  right: 180px;
  bottom: 35px;
  width: 82px;
  height: 150px;
  border: 4px solid rgba(255,255,255,.25);
  background: rgba(221, 176, 111, .4);
  border-radius: 15px 15px 8px 8px;
}

.perfume::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -43px;
  width: 38px;
  height: 43px;
  background: #b88a45;
  border-radius: 5px 5px 0 0;
}

/* faixa curva inferior */

.gold-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -78px;
  height: 120px;
  background: var(--cream);
  border-top: 7px solid var(--gold);
  border-radius: 50% 50% 0 0 / 25% 25% 0 0;
  z-index: 4;
}

/* CARDS */

.choices {
  position: relative;
  z-index: 6;
  padding: 0 max(6vw, 40px) 42px;
  margin-top: -4px;
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.choice-card {
  min-height: 270px;
  padding: 30px 28px;
  border: 1px solid var(--gold);
  border-radius: 17px;
  background: linear-gradient(145deg, #0c2c1e, #061e14);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}
/*
.choice-icon {
  color: var(--gold-light);
  font-size: 66px;
  text-align: center;
  padding-top: 8px;
  
}
*/
/* Ajuste na div que envelopa a imagem */
.choice-icon {
  width: 100%;
  max-width: 110px;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  overflow: hidden;
}

.choice-img {
  display: block;
  width: min(90px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.choice-icon-2 {
  display: block;
  width: 60px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.choice-card span,
.choice-card h2,
.value h3 {
  font-family: var(--serif);
}

.choice-card span {
  color: var(--gold-light);
  font-size: 23px;
}

.choice-card h2 {
  color: var(--gold-light);
  font-size: 31px;
  line-height: .95;
  margin: 3px 0 16px;
}

.choice-card p {
  color: #e4dfd4;
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}

.button {
  display: inline-flex;
  margin-top: 20px;
  min-width: 165px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 24px;
  color: #111;
  background: linear-gradient(90deg, #e2aa42, #f0c15d);
  font-size: 14px;
  font-weight: 500;
  transition: transform .2s, filter .2s;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* VALORES */

.values {
  background: #072318;
  min-height: 105px;
  padding: 22px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.value {
  display: flex;
  align-items: center;
  gap: 18px;
}

.value > strong {
  color: var(--gold);
  font-size: 40px;
  font-weight: 400;
}

.value h3 {
  color: var(--gold-light);
  font-size: 21px;
  font-weight: 600;
}

.value p {
  color: #c9c5bc;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 3px;
}

.divider {
  width: 1px;
  height: 55px;
  background: rgba(220,163,58,.4);
}

/* FOOTER */

.footer {
  min-height: 85px;
  padding: 16px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #04170e;
  color: #bcb8af;
  font-size: 12px;
}

.footer-logo {
  width: 55px;
  height: 55px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  line-height: .65;
}

.footer-logo small {
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer a:hover {
  color: var(--gold-light);
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .header {
    grid-template-columns: 110px 1fr 100px;
    padding: 0 28px;
  }

  .nav {
    gap: 25px;
  }

  .hero-left {
    left: -120px;
  }

  .hero-right {
    right: -120px;
  }

  .choice-card {
    grid-template-columns: minmax(65px, 80px) minmax(0, 1fr);
    padding: 25px 20px;
  }

  .choice-icon {
    max-width: 80px;
  }

  .choice-img {
    width: 70px;
  }
}

@media (max-width: 800px) {
  .header {
    min-height: 80px;
    grid-template-columns: 70px 1fr 70px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .brand-mark span {
    font-size: 20px;
  }

  .brand-mark strong {
    font-size: 18px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .header-actions a {
    font-size: 26px;
  }

  .hero {
    min-height: 540px;
    
  background-image: url('./img/banner-mobile.png'); /* Altere para o caminho da sua imagem */
  background-size: cover;       /* Faz a imagem cobrir toda a tela sem distorcer */
  background-position: right;  /* Centraliza a imagem na tela */ 
  background-repeat: no-repeat; /* Impede que a imagem fique se repetindo */
  }

  .hero-content {
    width: 90%;
    padding-bottom: 65px;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-logo strong {
    font-size: 32px;
  }

  .hero-logo span {
    font-size: 42px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-product {
    opacity: .3;
    transform: scale(.75);
  }

  .hero-left {
    left: -170px;
  }

  .hero-right {
    right: -170px;
  }

  .choices {
    grid-template-columns: minmax(0, 1fr);
    padding: 30px clamp(16px, 5vw, 30px);
  }

  .choice-card {
    min-height: auto;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .values {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 12%;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 16px;
    grid-template-columns: 62px 1fr 0;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .hero {
    min-height: 500px;
    background-position: 68% center;
  }

  .hero-content {
    width: min(92%, 420px);
    padding: 0 8px 60px;
  }

  .hero-logo {
    width: 105px;
    height: 105px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.55;
  }

  .choices {
    padding: 24px 14px 32px;
    gap: 14px;
  }

  .choice-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 22px 18px 24px;
    text-align: center;
    border-radius: 15px;
  }

  .choice-icon {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: visible;
  }

  .choice-img {
    width: 78px;
    max-width: 78px;
    height: auto;
    margin: 0 auto;
  }

  .choice-card span {
    font-size: 20px;
  }

  .choice-card h2 {
    font-size: clamp(26px, 8vw, 31px);
    margin-bottom: 12px;
  }

  .choice-card p {
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    line-height: 1.6;
  }

  .button {
    width: min(100%, 220px);
    min-width: 0;
    margin-top: 16px;
  }

  .values {
    width: 100%;
    padding: 26px 18px;
    gap: 18px;
  }

  .value {
    width: 100%;
    gap: 14px;
  }

  .value > strong {
    flex: 0 0 58px;
    display: flex;
    justify-content: center;
  }

  .choice-icon-2 {
    width: 52px;
    max-width: 52px;
    height: auto;
    padding: 0;
  }

  .value h3 {
    font-size: 19px;
  }

  .value p {
    font-size: 11px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 14px;
  }

  .footer p {
    line-height: 1.5;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
  }
}

@media (max-width: 340px) {
  .choice-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 12px;
  }

  .value {
    gap: 10px;
  }

  .value > strong {
    flex-basis: 50px;
  }

  .choice-icon-2 {
    width: 46px;
    max-width: 46px;
  }
}
