:root {
  --primary-color: #2d7a4d;
  --primary-light: #3d9d63;
  --primary-dark: #1f5535;
  --secondary-color: #e8f5f0;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
}

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

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar-section {
  background-color: #ffffff;
  border-bottom: 2px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
}

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

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

.btn {
  border-radius: 6px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  border: none;
}

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

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

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-accept {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

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

.cookie-banner {
  background-color: #1a1a1a;
  color: white;
  padding: 1.5rem;
  font-size: 0.9rem;
  display: none;
}

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

.cookie-text p {
  color: white;
  margin: 0;
}

.cookie-text a {
  color: var(--primary-light);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
}

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

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.page-header {
  background-color: var(--bg-light);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 2rem 0;
  color: var(--text-dark);
}

.featured-categories {
  padding: 3rem 0;
}

.category-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.category-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-info p {
  flex-grow: 1;
  color: var(--text-light);
}

.category-info .btn {
  align-self: flex-start;
}

.benefits {
  background-color: var(--bg-light);
  padding: 3rem 0;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--success-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefit-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin: 2rem 0;
}

.cta-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.about-content img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.values-list {
  list-style: none;
}

.values-list li {
  padding: 0.8rem 0;
  color: var(--text-light);
}

.values-list strong {
  color: var(--primary-color);
}

.company-info {
  padding: 3rem 0;
}

.company-info h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.products-catalog {
  padding: 3rem 0;
}

.catalog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
}

.catalog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.catalog-info {
  padding: 1.5rem;
}

.catalog-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.catalog-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.product-info {
  padding: 3rem 0;
}

.product-info h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.category-description {
  background-color: var(--bg-light);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-light);
}

.products-grid {
  padding: 3rem 0;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-details h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-details p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex-grow: 1;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0 0.5rem 0;
}

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

.info-section h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-section p {
  color: var(--text-light);
  line-height: 1.8;
}

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

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

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item strong {
  color: var(--text-dark);
}

.info-item p {
  margin: 0.5rem 0 0 0;
}

.contact-form-section {
  background-color: white;
  padding: 2rem;
}

.contact-form-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 77, 0.25);
}

.form-check-label {
  color: var(--text-dark);
}

.form-check-label a {
  color: var(--primary-color);
}

.thank-you-section {
  padding: 4rem 0;
  text-align: center;
}

.thank-you-content {
  background-color: var(--bg-light);
  padding: 3rem 2rem;
  border-radius: 8px;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.thank-you-section h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-section .lead {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.thank-you-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.next-steps {
  padding: 3rem 0;
}

.step-item {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--text-light);
  margin: 0;
}

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

.policy-article {
  max-width: 900px;
}

.policy-article h2 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-article p {
  color: var(--text-light);
  line-height: 1.8;
  text-align: justify;
}

.policy-article ul {
  color: var(--text-light);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-article li {
  margin-bottom: 0.5rem;
}

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

.footer h5 {
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

.footer a:hover {
  color: white;
}

.footer hr {
  border-top-color: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.3rem;
}

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

  .page-header h1 {
    font-size: 1.8rem;
  }

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

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

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }

  .cookie-banner {
    flex-direction: column;
  }

  .cookie-text {
    margin-bottom: 1rem;
  }
}
