
:root {
  --primary-color: #0A2540;
  --secondary-color: #FF5757;
  --accent-color: #FFD166;
  --bg-light: #F8F9FA;
  --bg-dark: #121212;
  --text-primary: #333333;
  --text-secondary: #757575;
  --text-light: #FFFFFF;
  --border-color: #E0E0E0;
}

html {
  scroll-behavior: smooth;
}

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


h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}


a, button {
  transition: all 0.3s ease;
}


a:focus, button:focus, input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.3);
}


@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}


.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: rgba(10, 37, 64, 0.9);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: rgba(255, 87, 87, 0.9);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
}

.btn-outline:hover {
  background-color: rgba(10, 37, 64, 0.05);
}


input, textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-family: 'Poppins', sans-serif;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
}


@media (max-width: 768px) {
  .mobile-menu-open {
    overflow: hidden;
  }
}


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


.card {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


.faq-toggle .fa-plus {
  transition: transform 0.3s ease;
}

.faq-toggle.active .fa-plus {
  transform: rotate(45deg);
}


#cookie-consent {
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}


#three-container {
  min-height: 300px;
  position: relative;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 20;
}


@media (max-width: 640px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}


.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.shadow-custom {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


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

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

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


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 37, 64, 0.8);
}