
:root {
  --primary: #0052cc;
  --secondary: #00bcd4;
  --accent: #4cd964;
  --background: #f5f9fc;
  --text-primary: #333333;
  --text-secondary: #6b778c;
  --error: #ff3b30;
  --success: #34c759;
  --warning: #ff9500;
  --gradient-primary: #0052cc;
  --gradient-secondary:  #00bcd4 0%;
  --card-bg: #ffffff;
  --border-color: #e8f0f5;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

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

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

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

img {
  max-width: 100%;
  height: auto;
}


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

.container-fluid {
  width: 100%;
  padding: 0 15px;
}


.header {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.navbar-brand {
  height: 50px;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 100%;
}

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover:after, 
.nav-link.active:after {
  width: 100%;
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}


.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 650px;
  z-index: 1;
  position: relative;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn i {
  margin-right: 0.5rem;
}


.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  height: auto;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 1.5rem;
}

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

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.kpi-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.kpi-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kpi-label {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}


.section {
  padding: 5rem 0;
}

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

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.bg-primary {
  background: var(--primary);
  color: #fff;
}

.bg-secondary {
  background: var(--secondary);
  color: #fff;
}

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

.bg-dark {
  background: #343a40;
  color: #fff;
}

.bg-gradient {
  background: var(--gradient-primary);
  color: #fff;
}


.feature-box {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  height: 70px;
  width: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
}

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


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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary);
  outline: none;
}

.form-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

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


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

.contact-info-item {
  display: flex;
  margin-bottom: 1rem;
}

.contact-info-icon {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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


.footer {
  background-color: #152136;
  padding: 5rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

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

.footer-title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

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

.footer-link {
  margin-bottom: 1rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: #fff;
}

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

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--secondary);
}

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

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


.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  padding: 1.5rem;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

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

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  overflow-y: auto;
}

.cookie-settings.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-settings-content {
  background-color: #fff;
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  margin: 2rem;
}

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

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

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

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

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

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

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--primary);
}

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


.article-card {
  margin-bottom: 2rem;
}

.article-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

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

.article-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}


.pricing-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background-color: #fff;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 var(--radius-md) 0 var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.pricing-price small {
  font-size: 1rem;
  position: absolute;
  top: 0;
  right: -15px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-feature {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-feature:last-child {
  border-bottom: none;
}


.accordion {
  margin-bottom: 2rem;
}

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

.accordion-header {
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding-right: 2.5rem;
}

.accordion-header:after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.accordion-header.active:after {
  transform: translateY(-50%) rotate(180deg);
}

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

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


.testimonial {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial:before {
  content: '\201C';
  font-family: 'Georgia', serif;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(0, 82, 204, 0.1);
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.testimonial-author-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}


.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.values-item {
  display: flex;
  margin-bottom: 2rem;
}

.values-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 1.5rem;
}

.values-content h4 {
  margin-top: 0;
}


.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  padding: 3rem 0;
}

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

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


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease;
}


@media (max-width: 991.98px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav.show {
    display: flex;
  }

  .nav-item {
    margin: 0.5rem 0;
  }

  .hero {
    height: auto;
    padding: 5rem 0;
  }

  .pricing-card {
    margin-bottom: 2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  .section {
    padding: 3rem 0;
  }

  .kpi-value {
    font-size: 2.5rem;
  }

  .kpi-card {
    margin-bottom: 1rem;
  }

  .feature-box {
    margin-bottom: 3rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .btn {
    display: block;
    width: 100%;
  }

  .btn + .btn {
    margin-top: 0.5rem;
  }

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