:root {
  --primary-yellow: #ffc107;
  --dark-yellow: #ffb300;
  --light-yellow: #ffd54f;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-la {
  color: var(--primary-yellow);
}

.brand-balance {
  color: var(--text-dark);
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-yellow);
}

.nav-link.active {
  color: var(--primary-yellow);
}

.btn-warning {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: var(--dark-yellow);
  border-color: var(--dark-yellow);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.hero-section h1 {
  color: var(--text-dark);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
  padding: 100px 0 60px;
  margin-top: -76px;
  padding-top: 156px;
  color: var(--text-dark);
}

.page-header h1 {
  color: var(--text-dark);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--light-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

.approach-step {
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
}

.benefit-box {
  padding: 25px;
  background-color: var(--white);
  border-left: 4px solid var(--primary-yellow);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.testimonial-card {
  border-left: 4px solid var(--primary-yellow);
}

.reason-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reason-icon {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.why-list {
  list-style: none;
  padding-left: 0;
}

.why-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.why-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text-dark);
  font-weight: bold;
  font-size: 1.3rem;
}

.footer {
  margin-top: 60px;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-yellow);
}

.service-badge {
  display: inline-block;
  background-color: var(--primary-yellow);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.expectation-card {
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expectation-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-dark);
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.next-step-card {
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.next-step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 auto;
}

.thank-you-section {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 auto;
}

.next-step-mini {
  text-align: center;
}

.step-mini-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h3 {
  color: var(--text-dark);
}

.policy-content h5 {
  color: var(--text-dark);
}

.policy-content ul {
  margin-bottom: 20px;
}

.policy-content a {
  color: var(--primary-yellow);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--dark-yellow);
}

.value-card {
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.difference-box {
  padding: 25px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.commitment-box {
  padding: 30px;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-yellow);
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 37, 41, 0.95);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--primary-yellow);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .page-header {
    padding: 80px 0 40px;
    padding-top: 136px;
  }

  .button-group {
    flex-direction: column;
  }

  .button-group .btn {
    width: 100%;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 66px;
  }

  .page-header {
    padding-top: 126px;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }
}
