/* Estilos principais para o site de Mesas Radiônicas - Versão Ajustada */

/* Variáveis de cores */
:root {
  --preto: #000000;
  --vermelho: #C41E3A;
  --dourado: #D4AF37;
  --roxo: #800080;
  --amarelo-claro: #F8E9A1;
  --dourado-escuro: #B8860B;
}

/* Reset e estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--preto);
  background-color: var(--preto);
}

a {
  text-decoration: none;
  color: var(--vermelho);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dourado);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--vermelho);
  color: var(--amarelo-claro);
  border: 1px solid var(--dourado);
  border-radius: 50px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  background-color: var(--dourado);
  color: var(--preto);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.section {
  padding: 80px 0;
  background-color: var(--preto);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dourado);
  position: relative;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--vermelho), var(--dourado));
  margin: 15px auto 0;
  border-radius: 1px;
}

/* Header e navegação */
header {
  background-color: var(--preto);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--dourado);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid var(--dourado);
}

.logo-text {
  color: var(--dourado);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: var(--amarelo-claro);
  font-weight: 300;
  position: relative;
  padding: 5px 0;
  letter-spacing: 1px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--dourado);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--dourado);
}

.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--dourado);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/banner_home.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--amarelo-claro);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--dourado);
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 300;
  color: var(--amarelo-claro);
}

/* Seção Informativa */
.info-section {
  background-color: var(--preto);
  border-top: 1px solid var(--dourado-escuro);
  border-bottom: 1px solid var(--dourado-escuro);
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-title {
  color: var(--roxo);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.info-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--amarelo-claro);
  font-weight: 300;
}

/* Seção de Benefícios */
.benefits-section {
  background-color: var(--preto);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: linear-gradient(145deg, var(--preto), #1a1a1a);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--dourado-escuro);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--dourado);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--vermelho);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dourado);
}

.benefit-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.benefit-icon2 {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: block;
  background: none;
  border: none;
  border-radius: 0;
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--roxo);
  font-weight: 300;
  letter-spacing: 1px;
}

.benefit-card p {
  color: var(--amarelo-claro);
  font-weight: 300;
}

/* Página Sobre */
.about-section {
  background-color: var(--preto);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--dourado-escuro);
}

.about-text {
  flex: 1;
}

.about-title {
  color: var(--roxo);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--amarelo-claro);
  font-weight: 300;
}

/* Página Serviços */
.services-section {
  background-color: var(--preto);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #0a0a0a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--dourado-escuro);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--dourado);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--roxo);
  font-weight: 300;
  letter-spacing: 1px;
}

.service-description {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--amarelo-claro);
  font-weight: 300;
}

.service-indications {
  margin-bottom: 20px;
}

.service-indications h4 {
  margin-bottom: 10px;
  color: var(--vermelho);
  font-weight: 300;
  letter-spacing: 1px;
}

.service-indications ul {
  list-style: none;
}

.service-indications li {
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
  color: var(--amarelo-claro);
  font-weight: 300;
}

.service-indications li:last-child {
  border-bottom: none;
}

/* Página Contato */
.contact-section {
  background-color: var(--preto);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--dourado-escuro);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background-color: #0a0a0a;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--dourado-escuro);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
  color: var(--dourado);
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--dourado-escuro);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--amarelo-claro);
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 300;
}

.form-control:focus {
  border-color: var(--dourado);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  margin-top: 40px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--roxo);
  font-weight: 300;
  letter-spacing: 1px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--vermelho);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 1px solid var(--dourado);
}

.contact-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.contact-text {
  font-size: 1.1rem;
  color: var(--amarelo-claro);
  font-weight: 300;
}

.contact-note {
  margin-top: 30px;
  padding: 15px;
  background-color: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--dourado);
  border-radius: 4px;
  color: var(--amarelo-claro);
  font-weight: 300;
}

/* Footer */
footer {
  background-color: var(--preto);
  color: var(--amarelo-claro);
  padding: 50px 0 20px;
  border-top: 1px solid var(--dourado-escuro);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-info h3 {
  color: var(--dourado);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer-contact {
  list-style: none;
  margin-bottom: 20px;
}

.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 300;
}

.footer-contact li i {
  margin-right: 10px;
  color: var(--dourado);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--dourado-escuro);
}

.social-link:hover {
  background-color: var(--dourado);
  border-color: var(--dourado);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: var(--amarelo-claro);
  transition: all 0.3s ease;
  font-weight: 300;
}

.footer-nav a:hover {
  color: var(--dourado);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #1a1a1a;
  font-size: 0.9rem;
  color: var(--amarelo-claro);
  font-weight: 300;
}
