
:root {
  --primary: #2C5F42;
  --secondary: #D98324;
  --accent: #A65E44;
  --highlight: #EACC8F;
  --bg-light: #F7F5F0;
  --bg-dark: #2A2E35;
  --text-dark: #333333;
  --text-light: #F7F5F0;
  --chart-blue: #5DADE2;
  --chart-yellow: #F4D03F;
  --chart-green: #58D68D;
  --chart-red: #EC7063;
  --transition: all 0.3s ease;
}


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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  margin-top: 0;
  color: var(--primary);
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

p {
  margin-bottom: 1.5rem;
}


.diagonal-container {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.diagonal-content {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skewY(-5deg);
  transform-origin: top left;
  background-color: var(--primary);
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

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

.section-accent {
  background-color: var(--accent);
  color: var(--text-light);
}

.overlap-section {
  margin-top: -6rem;
  position: relative;
  z-index: 2;
}


.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.grid-item-large {
  grid-column: span 8;
}

.grid-item-medium {
  grid-column: span 6;
}

.grid-item-small {
  grid-column: span 4;
}

.offset-right {
  margin-left: 2rem;
}

.offset-left {
  margin-right: 2rem;
}

.offset-top {
  margin-top: -3rem;
}


.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.navbar-dark {
  color: var(--text-light);
}

.navbar-light {
  color: var(--text-dark);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand img {
  height: 40px;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin-left: 2rem;
}

.navbar-menu a {
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  color: inherit;
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: inherit;
}


.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-image.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-left: auto;
  margin-right: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(42, 46, 53, 0.8) 0%, rgba(44, 95, 66, 0.9) 100%);
  border-radius: 8px;
  transform: translateY(-2rem);
}

.hero-title {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--highlight);
  margin-bottom: 2rem;
}


.card {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: var(--transition);
  height: fit-content;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}


.chart-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
}

.chart-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.chart {
  width: 100%;
  height: 300px;
  position: relative;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 250px;
}

.bar {
  width: 12%;
  background-color: var(--chart-blue);
  transition: var(--transition);
  position: relative;
  border-radius: 4px 4px 0 0;
}

.bar:nth-child(2n) {
  background-color: var(--chart-green);
}

.bar:nth-child(3n) {
  background-color: var(--chart-yellow);
}

.bar:nth-child(4n) {
  background-color: var(--chart-red);
}

.bar-label {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.bar-value {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
}

.line-chart {
  position: relative;
  height: 250px;
  width: 100%;
}

.chart-point {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
}

.chart-point:hover {
  transform: scale(1.5);
}

.chart-line {
  position: absolute;
  background-color: var(--primary);
  height: 2px;
  transform-origin: left center;
}


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

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '+';
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-question.active:after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer.active {
  max-height: 500px;
}


.form-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 66, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  margin-top: 0.25rem;
  margin-right: 0.75rem;
}


.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 4px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #234933;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 95, 66, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: #c07520;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(217, 131, 36, 0.3);
}

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-light);
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}


.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.overlay-dark > * {
  position: relative;
  z-index: 1;
}


.process-container {
  position: relative;
  margin: 4rem 0;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  width: 20%;
}

.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}


.stats-container {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--secondary);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-light);
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

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

.cookie-text {
  flex: 1;
  margin-right: 2rem;
}

.cookie-text p {
  margin-bottom: 0;
}

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

.cookie-settings {
  text-decoration: underline;
  color: var(--highlight);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

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

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #fff;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cookie-category-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.cookie-category-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.cookie-description {
  font-size: 0.9rem;
  color: #666;
}

.necessary-toggle {
  opacity: 0.5;
  cursor: not-allowed;
}


.map-container {
  height: 400px;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


.thank-you-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 300px);
  text-align: center;
  padding: 4rem 2rem;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-message {
  max-width: 600px;
  margin: 0 auto 2rem;
}


.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

.text-secondary {
  color: var(--secondary);
}

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

.bg-primary h2 {
  color: white;
}

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .asymmetric-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .grid-item-large {
    grid-column: span 6;
  }
  
  .grid-item-medium,
  .grid-item-small {
    grid-column: span 3;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    flex-wrap: wrap;
  }
  
  .process-step {
    width: 33.33%;
    margin-bottom: 2rem;
  }
  
  .process-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .navbar-menu.active {
    right: 0;
  }
  
  .navbar-menu li {
    margin: 0 0 1.5rem 0;
  }
  
  .navbar-menu a {
    color: var(--text-light);
    display: block;
    font-size: 1.2rem;
  }
  
  .navbar-toggle {
    display: block;
    z-index: 1000;
  }
  
  .navbar-toggle.active {
    color: var(--text-light);
  }
  
  .hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .grid-item-medium,
  .grid-item-small {
    grid-column: span 6;
  }
  
  .offset-right,
  .offset-left,
  .offset-top {
    margin: 0;
  }
  
  .process-step {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 2rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .asymmetric-grid {
    display: block;
  }
  
  .grid-item-large,
  .grid-item-medium,
  .grid-item-small {
    margin-bottom: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    margin-top: 1rem;
    justify-content: center;
  }
  
  .footer-legal a {
    margin: 0 0.75rem;
  }
  
  .process-step {
    width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}