:root {
  --primary-color: #1a237e;
  --primary-dark: #000051;
  --primary-light: #534bae;
  --secondary-color: #1976d2;
  --secondary-dark: #004ba0;
  --secondary-light: #63a4ff;
  --text-dark: #212121;
  --text-light: #f5f5f5;
  --background-light: #f5f5f5;
  --background-dark: #212121;
  --gray-light: #e0e0e0;
  --gray-medium: #9e9e9e;
  --gray-dark: #616161;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Raleway', sans-serif;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

h1, h2, h3, h4, h5, h6,
.logo, 
.section-header h2,
.produto-info h3,
.card-info h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.logo {
  letter-spacing: 1.5px;
  font-size: 2.2rem;
}

.banner-content h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  line-height: 1.1;
}

p, li, a, .card-desc, .destaque-text {
  font-family: var(--font-body);
  font-weight: 400;
}

strong, .btn, .ml {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 4px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 5px solid var(--primary-color);
  text-decoration: none;
  margin: 2px;
  border-radius: 7px;
  width: 120px;
  height: auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  width: 130px;
  transition: 0.5s;
  font-weight: 900;
}

.btn-secondary {
  background-color: var(--secondary-light);
  color: white;
  border: 5px solid var(--secondary-light);
  text-decoration: none;
  margin: 2px;
  border-radius: 7px;
  width: 130px;
  height: auto;
  text-align: center;
  align-items: center;
  font-weight: 500;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  width: 140px;
  transition: 0.5s;
  font-weight: 900;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  width: 175px;
  height: auto;
  padding: 3px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}

.btn-instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
  width: 175px;
  height: auto;
  padding: 3px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}


@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}