
:root {
  --primary: #121E2D;
  --secondary: #1E3A5F;
  --accent: #4ECDC4;
  --text-primary: #FFFFFF;
  --text-secondary: #B0BEC5;
  --highlight: #FF6B6B;
  --bg-dark: #0A1622;
  --bg-light: #1A2C3F;
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
  --border: #2A3F55;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cardo', serif;
  margin-top: 0;
  color: var(--text-primary);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

a:hover, a:focus {
  color: var(--highlight);
  text-decoration: none;
}

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

.uk-button {
  border-radius: 4px;
  font-weight: 500;
  text-transform: none;
  transition: all 0.3s ease;
}

.uk-button-primary {
  background-color: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
}

.uk-button-primary:hover, .uk-button-primary:focus {
  background-color: transparent;
  color: var(--accent);
}

.uk-button-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.uk-button-secondary:hover, .uk-button-secondary:focus {
  background-color: var(--text-primary);
  color: var(--primary);
}

.uk-button-danger {
  background-color: var(--highlight);
  color: var(--text-primary);
  border: 2px solid var(--highlight);
}

.uk-button-danger:hover, .uk-button-danger:focus {
  background-color: transparent;
  color: var(--highlight);
}


.site-header {
  background-color: var(--bg-dark);
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .uk-navbar-container {
  background: transparent;
}

.site-header .uk-navbar-nav > li > a {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  transition: color 0.3s ease;
  min-height: 60px;
}

.site-header .uk-navbar-nav > li:hover > a,
.site-header .uk-navbar-nav > li > a:focus,
.site-header .uk-navbar-nav > li.uk-active > a {
  color: var(--accent);
  background-color: transparent;
}

.site-header .uk-navbar-toggle {
  color: var(--text-primary);
}

.site-header .uk-navbar-toggle:hover,
.site-header .uk-navbar-toggle:focus {
  color: var(--accent);
}

.uk-navbar-dropdown {
  background-color: var(--bg-dark);
  border: 1px solid var(--border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.uk-navbar-dropdown-nav > li > a {
  color: var(--text-secondary);
}

.uk-navbar-dropdown-nav > li > a:hover,
.uk-navbar-dropdown-nav > li > a:focus {
  color: var(--accent);
}


.mobile-nav {
  background-color: var(--bg-dark);
}

.mobile-nav .uk-nav-default > li > a {
  color: var(--text-secondary);
  font-size: 16px;
  padding: 10px 20px;
}

.mobile-nav .uk-nav-default > li > a:hover,
.mobile-nav .uk-nav-default > li > a:focus,
.mobile-nav .uk-nav-default > li.uk-active > a {
  color: var(--accent);
}


.hero-section {
  background-color: var(--bg-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 34, 0.9), rgba(30, 58, 95, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--text-secondary);
}


.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  margin-top: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

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


.custom-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.custom-card-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.custom-card-body {
  padding: 20px;
}

.custom-card-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--border);
  background-color: rgba(10, 22, 34, 0.2);
}

.custom-card .uk-card-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}


.feature-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}


.simulator-container {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
}

.simulator-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.simulator-controls {
  margin-bottom: 30px;
}

.simulator-results {
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.uk-range {
  margin-bottom: 20px;
}

.uk-range::-webkit-slider-thumb {
  background: var(--accent);
}

.uk-range::-moz-range-thumb {
  background: var(--accent);
}

.uk-range::-ms-thumb {
  background: var(--accent);
}


.contact-form {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 30px;
}

.uk-input,
.uk-textarea,
.uk-select {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.uk-input:focus,
.uk-textarea:focus,
.uk-select:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: var(--accent);
}

.uk-form-label {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.uk-checkbox:checked,
.uk-radio:checked {
  background-color: var(--accent);
}


.site-footer {
  background-color: var(--bg-dark);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-contact-item {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent);
}

.copyright-bar {
  padding: 20px 0;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.copyright-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}


.uk-modal-dialog {
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.uk-modal-header {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

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

.uk-modal-footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.uk-modal-close-full {
  background-color: var(--accent);
  color: var(--primary);
}

.uk-modal-close-full:hover,
.uk-modal-close-full:focus {
  background-color: var(--highlight);
}


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

.cookie-settings-modal .uk-modal-dialog {
  max-width: 800px;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

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

.cookie-category-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cookie-category-description {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.cookie-settings-button {
  color: var(--text-secondary);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus {
  color: var(--accent);
}


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

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

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

.timeline-content {
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--accent);
  border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50px;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -60px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -60px;
}


.chart-container {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.chart-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}


.webinar-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.webinar-date {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.webinar-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.webinar-description {
  margin-bottom: 20px;
}

.countdown-container {
  background-color: var(--bg-dark);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.countdown-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  background-color: var(--bg-light);
  width: 70px;
  height: 70px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}


.text-accent {
  color: var(--accent) !important;
}

.text-highlight {
  color: var(--highlight) !important;
}

.bg-dark {
  background-color: var(--bg-dark) !important;
}

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

.border-accent {
  border-color: var(--accent) !important;
}

.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


@media (max-width: 959px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 70px;
    margin-right: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    right: auto;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
  }
}

@media (max-width: 639px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .countdown-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}


.iti {
  width: 100%;
}


.chart-svg {
  max-width: 100%;
  height: auto;
}


.map-icon {
  max-width: 100%;
  height: auto;
}