/* Start custom CSS for html, class: .elementor-element-a6da746 *//* Paleta de cores para Barbearia VIP 360° */
:root {
  --primary: #1a1a2e; /* Azul escuro quase preto - sofisticação */
  --secondary: #c8a45c; /* Dourado - exclusividade e premium */
  --accent: #e94822; /* Vermelho - destaque para CTAs */
  --dark: #16161f; /* Fundo escuro - elegância */
  --light: #f9f9f9; /* Branco off-white - leitura confortável */
  --gray: #333340; /* Cinza escuro - elementos secundários */
  --success: #28a745; /* Verde - garantias e benefícios */
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  --gradient-gold: linear-gradient(135deg, #c8a45c 0%, #f0d78c 50%, #c8a45c 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--light);
  background-color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

h3 {
  font-size: 1.8rem;
  color: var(--secondary);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.text-highlight {
  color: var(--secondary);
  font-weight: 600;
}

.text-accent {
  color: var(--accent);
}

/* Layout e containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background: var(--gradient-dark);
}

.section-light {
  background: var(--light);
  color: var(--primary);
}

/* Header e navegação */
header {
  background: var(--dark);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 1rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Hero section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  position: relative;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.85);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

/* Botões e CTAs */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  margin: 1rem 0.5rem;
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--accent);
  color: var(--light);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-5px);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-5px);
}

.cta-box {
  background: var(--gradient-dark);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--secondary);
  margin: 4rem 0;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  font-size: 1.3rem;
  padding: 1.2rem 3rem;
}

/* Pricing Box */
.pricing-box {
  background: rgba(26, 26, 46, 0.7);
  border: 2px solid var(--secondary);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pricing-box:before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  opacity: 0.1;
  border-radius: 50%;
}

.pricing-label {
  background: var(--secondary);
  color: var(--dark);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.pricing-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--light);
}

.pricing-installment {
  color: var(--secondary);
  font-size: 3rem;
}

.pricing-total {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.pricing-economy {
  color: var(--success);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-features li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  color: var(--success);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

/* Benefícios e recursos */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  background: var(--primary);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid var(--secondary);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Módulos do sistema */
.modules {
  margin: 4rem 0;
}

.module-card {
  background: var(--gray);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 5px solid var(--secondary);
}

.module-card:hover {
  transform: translateX(10px);
}

.module-content {
  padding: 2rem;
}

.module-title {
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* Depoimentos */
.testimonials {
  background: var(--gradient-dark);
  padding: 5rem 0;
}

.testimonial-card {
  background: var(--primary);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.3;
  font-family: 'Georgia', serif;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid var(--secondary);
}

.testimonial-name {
  font-weight: 700;
  color: var(--secondary);
}

.testimonial-position {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Garantia */
.guarantee {
  background: var(--primary);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin: 4rem 0;
  border: 2px solid var(--success);
  box-shadow: var(--shadow);
}

.guarantee-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.guarantee-title {
  color: var(--success);
}

/* FAQ */
.faq {
  margin: 4rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 164, 92, 0.3);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* Bônus */
.bonus-section {
  background: var(--gradient-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.bonus-section:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--secondary);
  opacity: 0.05;
  border-radius: 50%;
  transform: translate(150px, -150px);
}

.bonus-box {
  background: var(--primary);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}

.bonus-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-right: 1.5rem;
  min-width: 60px;
  text-align: center;
}

.bonus-content {
  flex: 1;
}

.bonus-title {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.bonus-value {
  font-weight: 700;
  color: var(--secondary);
  margin-top: 0.5rem;
}

/* Urgência e escassez */
.urgency {
  background: var(--accent);
  color: var(--light);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow);
}

.urgency-title {
  color: var(--light);
}

.countdown {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.countdown-item {
  margin: 0 1rem;
  text-align: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--dark);
  color: var(--light);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
footer {
  background: var(--dark);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-link {
  color: var(--light);
  margin: 0 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--secondary);
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Animações e efeitos */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-box {
  border: 2px solid var(--secondary);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  position: relative;
}

.highlight-label {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px;
  }
  
  .pricing-installment {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin: 1rem 0;
  }
  
  .benefits {
    grid-template-columns: 1fr;
  }
  
  .countdown {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    margin: 0.5rem;
  }
  
  .pricing-value {
    font-size: 2rem;
  }
  
  .pricing-installment {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .cta-box {
    padding: 2rem 1.5rem;
  }
  
  .module-card, .benefit-card, .testimonial-card {
    padding: 1.5rem;
  }
  
  .pricing-box {
    padding: 1.5rem;
  }
}/* End custom CSS */