:root {
  --gradient-primary: linear-gradient(135deg, #fff0db 0%, #ffe4e1 100%);
  --color-text-dark: #2c2c2c;
  --color-text-light: #666666;
  --color-bg-light: #fefefe;
  --color-border: #e8e8e8;
}

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

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

.navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.navbar-nav .nav-link:hover {
  color: #d4a574;
}

.hero-section {
  position: relative;
  height: 500px;
  background: var(--gradient-primary);
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-text-dark);
  width: 90%;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
}

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

.content-block {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.table {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.table thead {
  background: var(--gradient-primary);
}

.table thead th {
  border: none;
  font-weight: 600;
  color: var(--color-text-dark);
}

.table tbody tr {
  transition: background 0.3s ease;
}

.table tbody tr:hover {
  background: #f9f9f9;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff9f0 0%, #fff0f0 100%);
  border-left: 4px solid #d4a574;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-soft {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-text-dark);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: var(--color-text-dark);
  text-decoration: none;
}

.footer {
  background: #2c2c2c;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: #d4a574;
}

.footer p {
  color: #cccccc;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #444444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #999999;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  border-top: 3px solid #d4a574;
}

.cookie-banner p {
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

.btn-accept-cookies {
  background: var(--gradient-primary);
  border: none;
  color: var(--color-text-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

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

.form-control:focus {
  border-color: #d4a574;
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.15);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--color-text-dark);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: var(--gradient-primary);
  color: var(--color-text-dark);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .content-block {
    padding: 1.5rem;
  }
}

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