/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Cinzel', serif;
  background: linear-gradient(to bottom, #0f0f1a, #1b1b2f);
  color: #eee;
  scroll-behavior: smooth;
  min-height: 100vh;
  
}

/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #11253e;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


.main-header .logo-container img {
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(148, 70, 161, 0.5);
  margin-bottom: 10px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav {
  margin-left: auto;
  margin-right: 60px;
}
.main-nav ul li a {
  text-decoration: none;
  color: #dcdcdc;
  font-family: 'Cinzel', serif;
  font-size: 1.1em;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #5979ac;
}
.main-nav ul li a.active {
  border-bottom: 2px solid #a2b8dd;
  color: #5979ac;
}


@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('images/background.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* QUEM SOMOS */
.quem-somos {
  padding: 80px 20px;
  background-color: rgba(30,30,46,0.5);
  z-index: 2;
  position: relative;
  text-align: center;
  color: #eeeeee;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}




.quem-somos-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  text-align: left;
  color: #eeeeee;
}

.quem-somos-text h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #d1cdcd;
}

.quem-somos-text p {
  font-size: 1.2em;
  color: #d1cdcd; 
  line-height: 1.6;
  margin-bottom: 30px;
}

.quem-somos-text h3 {
  font-size: 1.5em;
  color: #d1cdcd;
  margin-bottom: 15px;
}

.quem-somos-text ul li {
  font-size: 1.2em;
  color: #d1cdcd;
  margin-bottom: 12px;
}

.quem-somos-image {
  text-align: center;
}

.quem-somos-image img {
  max-width: 250px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(148, 70, 161, 0.5);
  border: 3px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.quem-somos-image img:hover {
  transform: scale(1.05);
}

/* LOJA */
.loja-destaque {
  padding: 80px 20px;
  text-align: center;
}

.loja-destaque h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.produtos {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.produto {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  max-width: 250px;
}

.produto img {
  width: 100%;
  border-radius: 8px;
}

.btn-loja {
  display: inline-block;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #eee;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-loja:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* MAPAS NUMEROLOGICOS */
.numerologia-section {
  position: relative;
  padding: 100px 20px;
  min-height: 100vh;
  background-color: #011023;
  overflow: hidden;
}

.numerologia-section canvas#stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.numerologia-section .grid-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  padding: 20px;
}
#numerologia-section {
  padding-top: 190px;
  margin-top: -120px;
}

/* DIV1 */
.div1 h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
  color: #ffffff;
}

.div1 p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #dddddd;
}

.saber-mais-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.saber-mais-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

/* DIV3 (formulário) */
.div3 {
  background: rgba(17, 37, 62, 0.7);
 /* Lapislazuli-inspired */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.div3 h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.div3 form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.div3 label {
  font-weight: 500;
  color: #dddddd;
}

.div3 input[type="text"],
.div3 input[type="date"],
.div3 input[type="email"],
.div3 input[type="tel"] {
  background: #a2b8dd;
  color: #0f233c;
  border: none;
  padding: 10px;
  font-size: 1em;
  border-radius: 8px;
  outline: none;
}

.div3 input[type="submit"] {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.div3 input[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.4);
}



/* FOOTER */
footer {
  background: #0f0f1a;
  text-align: center;
  padding: 30px 20px;
  color: #aaa;
  margin-top: 60px;
}

footer .socials a {
  color: #aaa;
  margin: 0 10px;
  text-decoration: none;
  font-size: 20px;
}

footer .socials a:hover {
  color: #5979ac;
}
section,
footer {
  scroll-margin-top: 120px;
}





.popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #9446a1, #5c2c6f);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1000;
}

.popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
