:root {
  --primary-color: #ffc107;
  --primary-dark: #ffa000;
  --secondary-color: #212121;
  --text-dark: #212121;
  --text-light: #757575;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

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

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #424242 100%);
  padding: 100px 0 60px;
  margin-bottom: 0;
}

.section-padding {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
}

.feature-card,
.service-card,
.product-card,
.offer-card,
.value-card,
.advantage-card,
.quality-card,
.expectation-card,
.audience-card,
.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover,
.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.product-category-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-category-card .card-body {
  padding: 30px;
}

.product-card .product-category {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-features h6 {
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-features ul {
  list-style: none;
  padding-left: 0;
}

.product-features ul li:before {
  content: "✓ ";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 8px;
}

.advantage-number,
.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-light);
}

.benefits-list,
.audience-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li,
.audience-list li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.benefits-list li:before,
.audience-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-detail-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-detail-card .card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-features {
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
}

.service-features li {
  padding: 8px 0 8px 25px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

.expectation-card {
  display: flex;
  align-items: start;
  gap: 20px;
}

.expectation-number {
  flex-shrink: 0;
}

.expectation-content {
  flex-grow: 1;
}

.contact-form-card,
.contact-info-card,
.contact-hours-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-content h6 {
  font-weight: 700;
  margin-bottom: 5px;
}

.hours-list {
  border-top: 1px solid var(--border-color);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.thank-you-section {
  min-height: calc(100vh - 76px - 300px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--bg-light);
}

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

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--success-color);
  color: var(--white);
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thank-you-info {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.next-step-card {
  text-align: center;
  padding: 20px;
}

.thank-you-contact {
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

.legal-content li {
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content table {
  margin: 20px 0;
}

.legal-content table th {
  background-color: var(--bg-light);
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #424242 100%);
  padding: 80px 0;
}

.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer p {
  color: #bdbdbd;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

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

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

.footer-divider {
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0 20px;
}

.footer-legal-link {
  color: #bdbdbd;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--primary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 3px solid var(--primary-color);
  padding: 20px 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

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

.cookie-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookie-link:hover {
  color: var(--primary-dark);
}

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

.quality-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 15px;
}

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

  .hero-section {
    padding: 40px 0;
  }

  .page-header {
    padding: 60px 0 40px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .display-3 {
    font-size: 2.5rem;
  }

  .cta-section {
    padding: 50px 0;
  }

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .footer-legal-link {
    display: block;
    margin: 5px 0;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .feature-card,
  .service-card,
  .product-card {
    padding: 20px;
  }

  .contact-form-card,
  .contact-info-card,
  .contact-hours-card {
    padding: 25px;
  }
}
