
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&family=Nunito:wght@300;400;600&display=swap');

:root {
  
  --ff-primary: oklch(30% 0.15 260);
  --ff-accent: oklch(75% 0.18 85);
  --ff-background: oklch(97% 0.01 240);
  --ff-text: oklch(20% 0.02 240);
  --ff-light: oklch(70% 0.1 230);
  --ff-secondary: oklch(65% 0.12 110);
  
  
  --ff-shadow-light: 0.5rem 0.5rem 1rem rgba(166, 171, 189, 0.5);
  --ff-shadow-dark: -0.5rem -0.5rem 1rem rgba(255, 255, 255, 0.8);
  --ff-inset-shadow: inset 0.3rem 0.3rem 0.6rem rgba(166, 171, 189, 0.2), 
                     inset -0.3rem -0.3rem 0.6rem rgba(255, 255, 255, 0.7);
  
  
  --ff-spacing-xs: 0.25rem;
  --ff-spacing-sm: 0.5rem;
  --ff-spacing-md: 1rem;
  --ff-spacing-lg: 2rem;
  --ff-spacing-xl: 4rem;
  
  
  --ff-radius-sm: 0.5rem;
  --ff-radius-md: 1rem;
  --ff-radius-lg: 2rem;
  --ff-radius-full: 9999px;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--ff-text);
  background-color: var(--ff-background);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--ff-spacing-md);
  color: var(--ff-primary);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--ff-spacing-md);
}

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

a:hover, a:focus {
  color: var(--ff-accent);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: var(--ff-spacing-md);
}


.ff-neumorphic {
  background: var(--ff-background);
  border-radius: var(--ff-radius-md);
  box-shadow: var(--ff-shadow-light), var(--ff-shadow-dark);
  padding: var(--ff-spacing-md);
  transition: all 0.3s ease;
}

.ff-neumorphic-inset {
  background: var(--ff-background);
  border-radius: var(--ff-radius-md);
  box-shadow: var(--ff-inset-shadow);
  padding: var(--ff-spacing-md);
}

.ff-neumorphic:hover {
  box-shadow: var(--ff-shadow-light), var(--ff-shadow-dark), 0 0 15px rgba(166, 171, 189, 0.2);
}


.ff-header {
  padding: var(--ff-spacing-md);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ff-background);
}

.ff-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ff-logo {
  display: flex;
  align-items: center;
}

.ff-logo img {
  height: 50px;
  width: auto;
}

.ff-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ff-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.ff-nav {
  display: flex;
  gap: var(--ff-spacing-md);
}

.ff-nav-item {
  position: relative;
}

.ff-nav-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--ff-spacing-sm) var(--ff-spacing-md);
  position: relative;
}

.ff-nav-link:hover::after, 
.ff-nav-link.ff-active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background-color: var(--ff-accent);
  border-radius: var(--ff-radius-full);
}


.ff-main {
  flex: 1;
  padding: var(--ff-spacing-md);
}

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


.ff-chat-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--ff-spacing-md);
}

.ff-message {
  margin-bottom: var(--ff-spacing-lg);
  display: flex;
  gap: var(--ff-spacing-md);
}

.ff-message-user {
  justify-content: flex-end;
}

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

.ff-message-user .ff-avatar {
  background-color: var(--ff-accent);
  order: 2;
}

.ff-message-content {
  max-width: 70%;
  padding: var(--ff-spacing-md);
  border-radius: var(--ff-radius-md);
}

.ff-message-system .ff-message-content {
  background-color: white;
  box-shadow: var(--ff-shadow-light);
}

.ff-message-user .ff-message-content {
  background-color: var(--ff-primary);
  color: white;
}

.ff-typing-indicator {
  display: flex;
  gap: 5px;
  padding: var(--ff-spacing-xs) var(--ff-spacing-sm);
}

.ff-typing-dot {
  width: 8px;
  height: 8px;
  background-color: var(--ff-primary);
  border-radius: var(--ff-radius-full);
  opacity: 0.6;
  animation: typing-animation 1s infinite ease-in-out;
}

.ff-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.ff-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-animation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}


.ff-section {
  margin-bottom: var(--ff-spacing-xl);
}

.ff-section-title {
  text-align: center;
  margin-bottom: var(--ff-spacing-lg);
  position: relative;
}

.ff-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--ff-accent);
  margin: var(--ff-spacing-sm) auto 0;
  border-radius: var(--ff-radius-full);
}


.ff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--ff-spacing-lg);
}

.ff-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ff-card-image {
  border-radius: var(--ff-radius-md) var(--ff-radius-md) 0 0;
  overflow: hidden;
  height: 200px;
}

.ff-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ff-card:hover .ff-card-image img {
  transform: scale(1.05);
}

.ff-card-content {
  flex: 1;
  padding: var(--ff-spacing-md);
}

.ff-card-title {
  font-size: 1.3rem;
  margin-bottom: var(--ff-spacing-sm);
}


.ff-action {
  display: inline-block;
  padding: var(--ff-spacing-sm) var(--ff-spacing-lg);
  background-color: var(--ff-primary);
  color: white;
  border: none;
  border-radius: var(--ff-radius-full);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--ff-shadow-light);
}

.ff-action:hover, .ff-action:focus {
  background-color: var(--ff-accent);
  color: var(--ff-text);
  transform: translateY(-2px);
  box-shadow: var(--ff-shadow-light), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ff-action-secondary {
  background-color: transparent;
  color: var(--ff-primary);
  border: 2px solid var(--ff-primary);
}

.ff-action-secondary:hover, .ff-action-secondary:focus {
  background-color: var(--ff-primary);
  color: white;
}


.ff-form-group {
  margin-bottom: var(--ff-spacing-md);
}

.ff-label {
  display: block;
  margin-bottom: var(--ff-spacing-xs);
  font-weight: 600;
}

.ff-input, .ff-textarea, .ff-select {
  width: 100%;
  padding: var(--ff-spacing-sm);
  border: none;
  background-color: white;
  border-radius: var(--ff-radius-sm);
  box-shadow: var(--ff-inset-shadow);
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s ease;
}

.ff-input:focus, .ff-textarea:focus, .ff-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--ff-accent), var(--ff-inset-shadow);
}

.ff-textarea {
  min-height: 150px;
  resize: vertical;
}

.ff-checkbox-group {
  display: flex;
  align-items: center;
  gap: var(--ff-spacing-sm);
  margin-bottom: var(--ff-spacing-md);
}

.ff-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: var(--ff-radius-sm);
  background-color: white;
  box-shadow: var(--ff-inset-shadow);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.ff-checkbox:checked {
  background-color: var(--ff-primary);
}

.ff-checkbox:checked::after {
  content: '\2713';
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}


.ff-footer {
  background-color: var(--ff-primary);
  color: white;
  padding: var(--ff-spacing-lg) var(--ff-spacing-md);
  margin-top: auto;
}

.ff-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--ff-spacing-lg);
}

.ff-footer-logo img {
  height: 40px;
  margin-bottom: var(--ff-spacing-md);
}

.ff-footer-title {
  color: white;
  margin-bottom: var(--ff-spacing-md);
  font-size: 1.2rem;
}

.ff-footer-links {
  list-style: none;
}

.ff-footer-link {
  margin-bottom: var(--ff-spacing-sm);
}

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

.ff-footer-link a:hover {
  color: var(--ff-accent);
}

.ff-contact-info {
  display: flex;
  gap: var(--ff-spacing-sm);
  margin-bottom: var(--ff-spacing-sm);
  align-items: flex-start;
}

.ff-contact-icon {
  color: var(--ff-accent);
  font-size: 1.2rem;
  width: 20px;
}

.ff-copyright {
  text-align: center;
  padding-top: var(--ff-spacing-lg);
  margin-top: var(--ff-spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.ff-modal-backdrop {
  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: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ff-modal-backdrop.ff-active {
  opacity: 1;
  visibility: visible;
}

.ff-modal {
  background-color: var(--ff-background);
  border-radius: var(--ff-radius-md);
  box-shadow: var(--ff-shadow-light), var(--ff-shadow-dark);
  padding: var(--ff-spacing-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

.ff-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--ff-spacing-md);
}

.ff-modal-title {
  margin-bottom: 0;
}

.ff-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ff-text);
  transition: all 0.3s ease;
}

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

.ff-modal-body {
  margin-bottom: var(--ff-spacing-lg);
}

.ff-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--ff-spacing-md);
}


.ff-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--ff-background);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: var(--ff-spacing-md);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.ff-cookie-consent.ff-active {
  transform: translateY(0);
}

.ff-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--ff-spacing-md);
}

.ff-cookie-text {
  flex: 1;
  min-width: 280px;
}

.ff-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ff-spacing-sm);
}

.ff-cookie-settings {
  background-color: white;
  color: var(--ff-text);
  border: 1px solid var(--ff-primary);
}

.ff-cookie-settings:hover {
  background-color: var(--ff-light);
  color: var(--ff-primary);
}


.ff-cookie-options {
  margin-top: var(--ff-spacing-md);
}

.ff-cookie-option {
  margin-bottom: var(--ff-spacing-md);
  padding-bottom: var(--ff-spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ff-cookie-option:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ff-cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--ff-spacing-sm);
}

.ff-cookie-name {
  font-weight: 600;
  margin: 0;
}

.ff-cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

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

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

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

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

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

.ff-cookie-description {
  font-size: 0.9rem;
  color: #666;
}


.ff-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
}

.ff-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 4px;
  background-color: var(--ff-primary);
  border-radius: var(--ff-radius-full);
}

.ff-timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: var(--ff-spacing-lg);
}

.ff-timeline-dot {
  position: absolute;
  left: 10px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--ff-accent);
  border-radius: var(--ff-radius-full);
  border: 4px solid var(--ff-primary);
}

.ff-timeline-content {
  position: relative;
}

.ff-timeline-date {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--ff-primary);
  margin-bottom: var(--ff-spacing-xs);
}

.ff-timeline-title {
  margin-bottom: var(--ff-spacing-xs);
}


.ff-map-container {
  height: 400px;
  border-radius: var(--ff-radius-md);
  overflow: hidden;
  box-shadow: var(--ff-shadow-light), var(--ff-shadow-dark);
  margin-bottom: var(--ff-spacing-lg);
}


.ff-text-center {
  text-align: center;
}

.ff-text-accent {
  color: var(--ff-accent);
}

.ff-mt-1 { margin-top: var(--ff-spacing-md); }
.ff-mt-2 { margin-top: var(--ff-spacing-lg); }
.ff-mb-1 { margin-bottom: var(--ff-spacing-md); }
.ff-mb-2 { margin-bottom: var(--ff-spacing-lg); }

.ff-hidden {
  display: none;
}


.iti {
  width: 100%;
}

.iti__flag-container:hover .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}


@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .ff-section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .ff-header-content {
    flex-wrap: wrap;
  }
  
  .ff-nav-toggle {
    display: block;
    z-index: 101;
  }
  
  .ff-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background-color: var(--ff-background);
    flex-direction: column;
    padding: 80px var(--ff-spacing-lg) var(--ff-spacing-lg);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }
  
  .ff-nav.ff-active {
    transform: translateX(0);
  }
  
  .ff-message-content {
    max-width: 85%;
  }
  
  .ff-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ff-contact-info {
    justify-content: center;
  }
  
  .ff-timeline::before {
    left: 20px;
  }
  
  .ff-timeline-item {
    padding-left: 50px;
  }
  
  .ff-timeline-dot {
    left: 12px;
  }
  
  .ff-cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .ff-cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .ff-section {
    margin-bottom: var(--ff-spacing-lg);
  }
  
  .ff-grid {
    grid-template-columns: 1fr;
  }
  
  .ff-modal {
    padding: var(--ff-spacing-md);
  }
  
  .ff-message {
    margin-bottom: var(--ff-spacing-md);
  }
  
  .ff-message-content {
    max-width: 90%;
  }
  
  .ff-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}