:root {
  --dark: #0b0614;
  --purple: #170820;
  --purple-2: #2c1236;
  --gold: #c99343;
  --text: #f9f3e8;
  --muted: #d8c9d6;
  --light: #f8f1ec;
  --wine: #5c214f;
  --green: #25D366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--light);
  color: var(--dark);
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* HEADER */

.header {
  width: 100%;
  height: 86px;
  padding: 0 7%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(8, 4, 15, 0.94);
  border-bottom: 1px solid rgba(201, 147, 67, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.logo-icon {
  font-size: 34px;
}

.logo h1 {
  font-family: "Cinzel", serif;
  font-size: 25px;
  line-height: 1;
}

.logo span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.btn-header,
.btn-primary {
  background: linear-gradient(135deg, #7d2f73, #4b1f5f);
  color: white;

  padding: 14px 24px;
  border-radius: 8px;

  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;

  display: inline-block;
  transition: 0.3s;
}

.btn-header:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 32px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 720px;
  padding: 130px 7% 70px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;

  background:
    radial-gradient(circle at 75% 45%, rgba(124, 45, 105, 0.35), transparent 30%),
    linear-gradient(90deg, #08040f 0%, #15091f 55%, #0b0614 100%);

  color: var(--text);
  overflow: hidden;
}

.hero-text {
  max-width: 650px;
  z-index: 2;
}

.tag,
.about-text span,
.readings > span,
.benefits > span,
.testimonials > span,
.contact > span {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 15px;
}

.hero h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 20px 0;
}

.hero p {
  max-width: 560px;
  color: #eee7ec;
  line-height: 1.7;
  font-size: 17px;
  margin-bottom: 28px;
}

.hero-photo {
  width: 100%;
  height: 580px;

  border-radius: 18px;
  overflow: hidden;
  position: relative;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 147, 67, 0.25);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-features div {
  color: var(--gold);
  font-size: 26px;
}

.hero-features span {
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  max-width: 140px;
  margin-left: 8px;
}

/* SOBRE */

.about {
  padding: 70px 7%;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;

  background: var(--light);
}

.about-img img {
  border-radius: 14px;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-text h2,
.benefits h2,
.contact h2 {
  font-family: "Cinzel", serif;
  color: var(--wine);
  font-size: clamp(30px, 4vw, 44px);
  margin: 12px 0 20px;
}

.about-text p {
  line-height: 1.8;
  color: #3b293c;
  margin-bottom: 18px;
  font-size: 17px;
}

.about-icons {
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-icons div {
  color: var(--wine);
  font-size: 24px;
}

.about-icons strong {
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

/* LEITURAS */

.readings {
  background: radial-gradient(circle at top, #241032, #0d0617 70%);
  padding: 70px 7%;
  text-align: center;
  color: white;
}

.readings h2,
.testimonials h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 4vw, 44px);
  margin: 10px 0 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 34px;
}

.card {
  padding: 34px 24px;
  border: 1px solid rgba(201, 147, 67, 0.6);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
}

.card .icon {
  font-size: 52px;
  color: var(--gold);
  margin-bottom: 18px;
}

.card h3 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  min-height: 90px;
}

.card strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
  margin-top: 20px;
}

.center {
  margin: 0 auto;
}

/* BENEFÍCIOS */

.benefits {
  padding: 65px 7%;
  text-align: center;
  background: var(--light);
}

.benefits-grid {
  margin-top: 38px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
}

.benefit-icon {
  font-size: 46px;
  color: var(--wine);
  margin-bottom: 16px;
}

.benefits h3 {
  color: var(--wine);
  text-transform: uppercase;
  font-size: 17px;
  margin-bottom: 8px;
}

.benefits p {
  color: #4e3a4d;
  line-height: 1.6;
}

/* DEPOIMENTOS */

.testimonials {
  padding: 70px 7%;
  text-align: center;
  color: white;
  background: radial-gradient(circle at top, #241032, #0d0617 75%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial {
  text-align: left;
  border: 1px solid rgba(201, 147, 67, 0.35);
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 12px;
}

.testimonial p {
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.stars {
  color: var(--gold);
  margin-bottom: 8px;
}

/* CONTATO */

.contact {
  padding: 70px 7%;
  text-align: center;
  background: var(--light);
}

.contact-grid {
  margin-top: 36px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: #fffaf7;
  border: 1px solid #eadbd2;
  border-radius: 14px;
  padding: 34px 28px;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.big-icon {
  font-size: 54px;
  color: #FF0000;
  margin-bottom: 18px;
}

.whatsapp {
  color: #22c55e;
}

.instagram {
  color: #d62976;
}

.contact-card h3 {
  color: var(--wine);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-card p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #473344;
}

.contact-card a {
  display: inline-block;
  padding: 12px 22px;
  background:#FF0000;
  color: white;
  border-radius: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.contact-card:first-child a {
  background: var(--green);
}

.contact-card:last-child a {
  background: #d62976;
}

/* FOOTER */

.footer {
  background: #0b0614;
  color: white;
  padding: 28px 7%;
  text-align: center;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 65px;
  height: 65px;

  background: var(--green);
  color: white;

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 36px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);

  z-index: 9999;
  transition: 0.3s;

  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* BOTÃO VOLTAR AO TOPO */


/* ANIMAÇÃO WHATSAPP */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .btn-header {
    display: none;
  }

  .hero {
    gap: 35px;
  }

  .cards,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 86px;
    right: 0;

    width: 100%;

    background: #0b0614;

    flex-direction: column;
    padding: 30px;

    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .hero-photo {
    height: 430px;
  }

  .about,
  .contact-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0 5%;
  }

  .hero,
  .about,
  .readings,
  .benefits,
  .testimonials,
  .contact {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero-photo {
    height: 360px;
  }

  .cards,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    flex-direction: column;
    gap: 18px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 20px;
    font-size: 32px;
  }

  .top-btn {
    right: 24px;
    bottom: 90px;
  }

  .youtube i{
    color:#FF0000;
}
}