:root {
  --primary-color: #4a148c;
  --primary-dark: #2d0654;
  --primary-light: #7c43bd;
  --accent-color: #9c27b0;
  --accent-light: #ce93d8;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-gray: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --gradient-1: linear-gradient(135deg, #4a148c 0%, #7c43bd 100%);
  --gradient-2: linear-gradient(135deg, #2d0654 0%, #4a148c 100%);
  --gradient-3: linear-gradient(135deg, #7c43bd 0%, #9c27b0 100%);
}

* {
  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;
  background-color: var(--bg-white);
}

.navbar {
  background: var(--gradient-2);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: var(--accent-light);
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-light);
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -56px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  opacity: 0.85;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-hero {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  background-color: var(--accent-light);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-hero {
  background: var(--gradient-1);
  color: var(--text-light);
  padding: 8rem 0 4rem 0;
  text-align: center;
  margin-top: -56px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero .lead {
  font-size: 1.25rem;
  opacity: 0.9;
}

.content-section {
  padding: 5rem 0;
}

.gradient-bg {
  background: var(--gradient-1);
  color: var(--text-light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: inherit;
}

.gradient-bg .section-title {
  color: var(--text-light);
}

.section-intro {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.image-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-5px);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.topic-card,
.persona-card,
.value-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.gradient-bg .topic-card,
.gradient-bg .persona-card,
.gradient-bg .value-card {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.topic-card:hover,
.persona-card:hover,
.value-card:hover {
  transform: translateY(-5px);
}

.topic-card img,
.persona-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.topic-card h3,
.persona-card h3,
.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-box,
.info-box-white {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2.5rem;
  color: var(--text-light);
}

.info-box-white {
  background: var(--bg-white);
  color: var(--text-dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.info-list {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
}

.info-item {
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-author {
  font-weight: 600;
  margin-top: 1rem;
  color: var(--primary-color);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.gradient-bg .faq-item {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.gradient-bg .faq-item h4 {
  color: var(--text-light);
}

.cta-section {
  background: var(--gradient-3);
  color: var(--text-light);
  padding: 5rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: var(--bg-white);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: var(--accent-light);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline,
.btn-outline-light {
  background-color: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.contact-info {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-form {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 2rem;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.btn-primary {
  background: var(--gradient-1);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gradient-2);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--text-gray);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #555555;
  transform: translateY(-2px);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem 0;
}

.thank-you-content {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 4rem;
  max-width: 800px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.thank-you-buttons {
  margin-top: 2rem;
}

.thank-you-buttons .btn {
  margin: 0.5rem;
}

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

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.legal-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.alert {
  border-radius: 10px;
  padding: 1.5rem;
}

.footer {
  background: var(--gradient-2);
  color: var(--text-light);
  padding: 4rem 0 2rem 0;
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-legal {
  margin-top: 1rem;
}

.footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.9;
  margin: 0 0.5rem;
}

.footer-legal a:hover {
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-2);
  color: var(--text-light);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .lead {
    font-size: 1.125rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

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

  .cta-section h2 {
    font-size: 2rem;
  }

  .thank-you-content {
    padding: 2rem;
  }

  .thank-you-content h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
