
:root {
  --primary: #1E3A8A;
  --secondary: #0891B2;
  --accent: #10B981;
  --neutral-dark: #1F2937;
  --neutral-medium: #6B7280;
  --neutral-light: #F3F4F6;
  --background: #FFFFFF;
  --alert: #EF4444;
  --warning: #F59E0B;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--neutral-dark);
  overflow-x: hidden;
}


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

a {
  color: var(--secondary);
  transition: color 0.3s ease;
}

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

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn-primary {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: white;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-secondary {
  background-color: var(--secondary);
  border: 2px solid var(--secondary);
  color: white;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--secondary);
}

.btn-accent {
  background-color: var(--accent);
  border: 2px solid var(--accent);
  color: white;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent);
}

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

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


.header {
  height: 60px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 40;
}

.mobile-menu.active {
  transform: translateY(0);
}


.hero {
  background: linear-gradient(135deg, var(--neutral-light) 0%, #ffffff 100%);
}

.hero-image {
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease-in-out;
}

.hero-image:hover {
  transform: translateY(-5px);
}


.feature-card {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid var(--neutral-light);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--secondary);
}

.feature-icon {
  background-color: var(--neutral-light);
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: white;
}


.step-number {
  background-color: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-connector {
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: var(--neutral-light);
  z-index: -1;
}


.form-control {
  border: 1px solid var(--neutral-light);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
}


.iti {
  width: 100%;
}


.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cookie-settings-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 40;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cookie-settings-toggle:hover {
  background-color: var(--secondary);
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-settings-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-settings-content {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}


.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-in-out;
}

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

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}


@media (max-width: 768px) {
  .step-connector {
    display: none;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}


@media print {
  .no-print {
    display: none;
  }
  
  a {
    text-decoration: none;
    color: var(--neutral-dark);
  }
  
  body {
    font-size: 12pt;
  }
}