@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --color-primary: #e89580;
  --color-primary-dark: #d67b63;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-background: #ffffff;
  --color-background-light: #faf8f6;
  --color-border: #e5e1dc;
  --header-height: 70px;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: var(--header-height);
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--color-primary-dark);
}

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

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

.btn-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 149, 128, 0.3);
  color: white;
  text-decoration: none;
}

main {
  margin-top: var(--header-height);
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #faf8f6 0%, #ffffff 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section .lead {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 149, 128, 0.35);
  color: white;
  text-decoration: none;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

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

.rounded-img {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.context-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.context-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.context-card img {
  margin-bottom: 1.5rem;
}

.context-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.choice-item {
  background-color: var(--color-background-light);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-primary);
}

.choice-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.format-box {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.format-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.faq-item {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(232, 149, 128, 0.15);
}

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

.footer {
  background-color: var(--color-text);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

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

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

.footer-copyright {
  opacity: 0.8;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

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

.btn-cookie {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accept {
  background-color: var(--color-primary);
  color: white;
}

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

.btn-reject {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-settings {
  background-color: #6b6b6b;
  color: white;
}

.btn-settings:hover {
  background-color: #555555;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  color: var(--color-text);
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cookie-options {
  margin: 2rem 0;
}

.cookie-options label {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cookie-options input[type="checkbox"] {
  margin-right: 0.5rem;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.policy-page {
  padding: 3rem 0;
  min-height: calc(100vh - var(--header-height) - 300px);
}

.policy-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.policy-page h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-page p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.policy-intro {
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 2rem;
}

.policy-date {
  font-style: italic;
  color: var(--color-text-light);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-links-inline {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links-inline li {
  display: inline;
}

.footer-links-inline a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

.thank-you-page {
  padding: 5rem 0;
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: var(--color-background-light);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.thank-you-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

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

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

  .content-section h2 {
    font-size: 1.75rem;
  }

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

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-links-inline {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .policy-page h2 {
    font-size: 1.5rem;
  }

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

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

@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

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

  .context-card,
  .format-box,
  .faq-item {
    padding: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
