
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;700&display=swap');


:root {
  --primary-blue: #1e4d8c;
  --light-blue: #3a7bd5;
  --dark-gray: #333333;
  --accent-orange: #f39c12;
  --accent-green: #27ae60;
  --accent-red: #e74c3c;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
}


body {
  font-family: 'Red Hat Display', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

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

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

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--light-blue);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--accent-orange);
  color: var(--white);
  border: none;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: #e67e22;
  color: var(--white);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--accent-orange);
  transform: translateX(-50%);
}

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

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

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


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

.uk-navbar-nav > li > a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-gray);
  text-transform: none;
  transition: color 0.3s ease;
}

.uk-navbar-nav > li:hover > a, 
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-active > a {
  color: var(--primary-blue);
}

.uk-navbar-item.uk-logo {
  padding: 10px 0;
}

.uk-navbar-item.uk-logo img {
  height: 40px;
}

.uk-navbar-toggle {
  color: var(--primary-blue);
}


.hero-section {
  position: relative;
  padding: 0;
}

.hero-slider .uk-slideshow-items {
  min-height: 500px;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
}


.feature-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.feature-card-content {
  padding: 20px;
}

.feature-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}


.uk-accordion-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-blue);
  padding: 15px;
  background-color: var(--light-gray);
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.uk-accordion-title:hover {
  background-color: var(--medium-gray);
}

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


.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .uk-input,
.contact-form .uk-textarea,
.contact-form .uk-select {
  border-radius: 5px;
  border: 1px solid var(--medium-gray);
}

.contact-form .uk-input:focus,
.contact-form .uk-textarea:focus,
.contact-form .uk-select:focus {
  border-color: var(--light-blue);
}

.form-group {
  margin-bottom: 20px;
}


.iti {
  width: 100%;
}


.contact-map {
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}


.article-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.article-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.article-content {
  padding: 20px;
}

.article-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 15px;
}


.article-header {
  margin-bottom: 30px;
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.article-body h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}

.article-body ul, .article-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.article-share {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--medium-gray);
}

.article-share h3 {
  margin-bottom: 15px;
}

.share-buttons a {
  display: inline-block;
  margin-right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  transition: transform 0.3s ease;
}

.share-buttons a:hover {
  transform: scale(1.1);
}

.share-twitter {
  background-color: #1DA1F2;
}

.share-facebook {
  background-color: #3b5998;
}

.share-linkedin {
  background-color: #0077B5;
}

.share-whatsapp {
  background-color: #25D366;
}


.tech-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}


.footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer a {
  color: var(--medium-gray);
  transition: color 0.3s ease;
}

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

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

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-orange);
}


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

.cookie-settings-modal {
  max-width: 800px;
  padding: 30px;
}

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

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

.cookie-switch {
  display: flex;
  align-items: center;
}

.cookie-switch-label {
  margin-left: 10px;
  font-weight: 500;
}


.fade-in {
  opacity: 1;
}

.slide-up {
  opacity: 1;
  transform: translateY(50px);
}

.slide-left {
  opacity: 1;
  transform: translateX(50px);
}

.slide-right {
  opacity: 1;
  transform: translateX(-50px);
}


@media (max-width: 959px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 639px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero-slider .uk-slideshow-items {
    min-height: 400px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .article-header h1 {
    font-size: 2rem;
  }
}


.thanks-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--accent-green);
  margin-bottom: 30px;
}

.thanks-page h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thanks-page p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
}


.news-ticker {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
}

.news-ticker-content {
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


.tech-innovation {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.tech-innovation-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.tech-innovation:hover .tech-innovation-image {
  transform: scale(1.05);
}

.tech-innovation-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
}

.tech-innovation-content h3 {
  color: var(--white);
  margin-bottom: 10px;
}


.chart-container {
  position: relative;
  height: 300px;
  margin-bottom: 30px;
}


.tech-trend {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--medium-gray);
}

.tech-trend:last-child {
  border-bottom: none;
}

.tech-trend-icon {
  flex: 0 0 80px;
  height: 80px;
  background-color: var(--light-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-right: 20px;
}

.tech-trend-content {
  flex: 1;
}

.tech-trend-content h3 {
  margin-bottom: 10px;
}


.app-selection-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}

.app-selection-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.app-selection-step h3 {
  margin-bottom: 15px;
}