
:root {
  --primary: #1A5276;
  --secondary: #F39C12;
  --accent: #2ECC71;
  --bg-light: #F8F9FA;
  --bg-dark: #2C3E50;
  --text-primary: #333333;
  --text-secondary: #7F8C8D;
  --border-color: #E5E8E8;
  --error: #E74C3C;
  --success: #27AE60;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}


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

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

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

a:hover, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}


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

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  margin: 1rem auto 0;
}


header {
  background-color: #fff;
  box-shadow: var(--shadow);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

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

.logo {
  width: 180px;
  height: auto;
}

.nav-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.floating-nav {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.nav-orb {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.nav-orb:hover, .nav-orb:focus {
  background-color: var(--secondary);
  transform: scale(1.05);
}

.nav-orb i {
  color: white;
  font-size: 24px;
}

.nav-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 200px;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
}

.nav-menu li:hover {
  background-color: var(--bg-light);
}

.nav-menu a {
  color: var(--text-primary);
  display: block;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-menu a.active {
  color: var(--secondary);
  font-weight: 500;
}


.hero {
  padding: 8rem 0 5rem;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--secondary);
  color: white;
  font-weight: 500;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover, .cta-button:focus {
  background-color: #E67E22;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.hero-image {
  margin-top: 3rem;
}


.value-prop {
  padding: 5rem 0;
  background-color: white;
}

.card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  height: auto;
}

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

.card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin: 1.5rem 0;
}

.card-icon i {
  font-size: 2.5rem;
  color: var(--secondary);
}

.card-body {
  padding: 1.5rem;
}

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


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

.process-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 3rem;
}

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

.process-step h3 {
  margin-bottom: 1rem;
}

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

.process-diagram {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}


.services-preview {
  padding: 5rem 0;
  background-color: white;
}

.service-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}


.case-metrics {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.metrics-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}

.metric-item {
  flex-basis: 100%;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.metric-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.metric-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}


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

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--bg-light);
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-control:focus {
  color: var(--text-primary);
  background-color: white;
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(26, 82, 118, 0.25);
}

textarea.form-control {
  height: auto;
  min-height: 120px;
}

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

.form-check-input {
  margin-right: 0.5rem;
}


.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: white;
}

.accordion-header {
  padding: 1.25rem;
  background-color: white;
  cursor: pointer;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: var(--bg-light);
}

.accordion-header i {
  transition: var(--transition);
}

.accordion-body {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid var(--border-color);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 1.25rem;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}


footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.25rem;
}

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

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

.footer-links a {
  color: #ECF0F1;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-settings {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  margin: 0;
  color: var(--primary);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--error);
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9998;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

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

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

.cookie-button {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.accept-all {
  background-color: var(--primary);
  color: white;
  border: none;
}

.accept-all:hover {
  background-color: #14405E;
}

.reject-non-essential {
  background-color: var(--bg-light);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.reject-non-essential:hover {
  background-color: #E5E8E8;
}

.cookie-settings-btn {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.cookie-settings-btn:hover {
  background-color: rgba(26, 82, 118, 0.1);
}


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

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

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

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

.category-title {
  font-size: 1.2rem;
  margin: 0;
}

.category-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.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(--accent);
}

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

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.cookie-table th, .cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
  color: var(--primary);
  font-weight: 500;
}


.thank-you {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

.thank-you h1 {
  margin-bottom: 1.5rem;
}

.thank-you p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}


.approach-section {
  padding: 5rem 0;
  background-color: white;
}

.approach-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.approach-text {
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--secondary);
  border-radius: 50%;
  top: 15px;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.left::after {
  right: -12px;
}

.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


.service-detailed {
  padding: 2rem 0;
  margin-bottom: 3rem;
}

.service-detailed h3 {
  margin-bottom: 1.5rem;
}

.service-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.service-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-details-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

.service-details-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
}

.service-result {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.service-result h4 {
  margin-top: 0;
  color: var(--primary);
}


.partners-section {
  padding: 5rem 0;
  background-color: white;
}

.article-preview {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.article-preview:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-preview h3 {
  margin-bottom: 1rem;
}

.article-preview p {
  margin-bottom: 1.5rem;
}


.article {
  padding: 5rem 0;
}

.article-header {
  margin-bottom: 3rem;
}

.article-title {
  margin-bottom: 1rem;
}

.article-date {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  display: block;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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


.contact-page {
  padding: 5rem 0;
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.contact-details li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1.25rem;
}

.contact-details li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary);
}

.contact-map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.working-hours {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}


.legal-page {
  padding: 5rem 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
  margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-date {
  margin-bottom: 3rem;
  color: var(--text-secondary);
  font-style: italic;
}


.iti {
  width: 100%;
}


@media (min-width: 576px) {
  .metric-item {
    flex-basis: calc(50% - 1rem);
  }
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
  }
  
  .cookie-text {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  
  .footer-content {
    flex-direction: row;
  }
  
  .footer-contact, .footer-links {
    flex-basis: 50%;
  }
}

@media (min-width: 992px) {
  .hero {
    padding-top: 10rem;
  }
  
  .metric-item {
    flex-basis: calc(33.333% - 1.33rem);
  }
  
  .timeline-item {
    padding: 10px 60px;
  }
}

@media (max-width: 767px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 19px;
  }
  
  .left::after, .right::after {
    left: 19px;
  }
  
  .right {
    left: 0;
  }
}


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

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

.font-weight-bold { font-weight: 700; }
.font-weight-medium { font-weight: 500; }
.font-weight-normal { font-weight: 400; }
.font-weight-light { font-weight: 300; }

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

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