
:root {
  --primary-color: #2C3E50;
  --secondary-color: #E74C3C;
  --tertiary-color: #3498DB;
  --background-color: #F8F9FA;
  --text-color: #333333;
  --outline-color: #95A5A6;
  --footer-color: #1A252F;
  --success-color: #27AE60;
  --alert-color: #F39C12;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}


.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
}

header > div > nav {
  z-index: 999;
}

.uk-text-lead {
  font-weight: 300;
}

p, li {
  font-weight: 400;
}

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

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}


.uk-button-outline {
  background-color: transparent;
  color: currentColor;
  border: 2px solid var(--outline-color);
  transition: all 0.3s ease;
}

.uk-button-outline:hover {
  background-color: var(--outline-color);
  color: white;
  border-color: var(--outline-color);
}

.uk-button {
  font-weight: 500;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.5px;
  padding: 10px 24px;
}

.uk-light .uk-button-outline {
  border-color: white;
  color: white;
}

.uk-light .uk-button-outline:hover {
  background-color: white;
  color: var(--primary-color);
}

.uk-button-primary {
  background-color: var(--tertiary-color);
}

.uk-button-primary:hover {
  background-color: #2980B9;
}


.uk-navbar-container:not(.uk-navbar-transparent) {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.uk-navbar-container {
  transition: background-color 0.3s ease;
}

.uk-navbar-item, .uk-navbar-nav > li > a {
  min-height: 80px;
  font-weight: 500;
  color: var(--text-color);
}

.uk-navbar-dropdown {
  padding: 20px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.nav-preview {
  width: 280px;
}


.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 80px 0;
}

.parallax-layer {
  opacity: 0.3;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.parallax-item {
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 300;
}


.service-card, .check-card, .sector-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .check-card:hover, .sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.uk-card {
  border-radius: 0;
  overflow: hidden;
}

.uk-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}


.methodology-step {
  display: flex;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-number {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.step-content {
  flex: 1;
}

.methodology-image, .report-image {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  overflow: hidden;
}


.timeline {
  position: relative;
  padding: 30px 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background: var(--outline-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  background: var(--tertiary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1;
}

.timeline-content {
  width: 45%;
  background: white;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
}

.timeline-content:after {
  content: '';
  position: absolute;
  top: 15px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
  box-shadow: 2px -2px 5px rgba(0,0,0,0.05);
}

.timeline-content-right {
  margin-left: 55%;
}

.timeline-content-right:after {
  right: auto;
  left: -10px;
  box-shadow: -2px 2px 5px rgba(0,0,0,0.05);
}


.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
}

.uk-accordion-title {
  padding: 15px 20px;
  background: #f8f8f8;
  font-size: 1.1rem;
  font-weight: 500;
}

.uk-accordion-content {
  padding: 15px 20px;
}


.uk-form-label {
  font-weight: 500;
  margin-bottom: 5px;
}

.uk-input, .uk-textarea, .uk-select {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.uk-input:focus, .uk-textarea:focus, .uk-select:focus {
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.iti {
  width: 100%;
}


.uk-section-secondary {
  background-color: var(--footer-color);
}

.uk-section-secondary h3 {
  color: white;
}


#cookie-consent {
  z-index: 999;
}


@media (max-width: 960px) {
  .timeline:before {
    left: 20px;
  }
  
  .timeline-icon {
    left: 20px;
  }
  
  .timeline-content, .timeline-content-right {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  
  .timeline-content:after, .timeline-content-right:after {
    right: auto;
    left: -10px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.05);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 500px;
    height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .uk-button {
    padding: 8px 20px;
  }
  
  .methodology-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
}


.uk-list-check li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

.uk-list-check li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}


.page-header {
  padding: 80px 0 40px;
  background-color: #f5f5f5;
}


.deliverable-card {
  height: 100%;
}

.deliverable-card .uk-card-media-top {
  height: 200px;
  overflow: hidden;
}

.deliverable-card .uk-card-media-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.uk-modal-dialog {
  border-radius: 0;
}

.uk-modal-title {
  font-size: 1.8rem;
  color: var(--primary-color);
}


@media print {
  .uk-offcanvas, .uk-modal, #cookie-consent {
    display: none !important;
  }
  
  .uk-navbar-container {
    box-shadow: none !important;
    border-bottom: 1px solid #ddd;
  }
  
  body, .uk-section {
    background: white !important;
  }
  
  a {
    text-decoration: none !important;
  }
}