
:root {
  --color-primary: #2A4365;
  --color-secondary: #38A169;
  --color-accent: #F6AD55;
  --color-bg-light: #F7FAFC;
  --color-bg-dark: #1A202C;
  --color-text-primary: #1A202C;
  --color-text-secondary: #4A5568;
  --color-border-light: #E2E8F0;
  --color-success: #48BB78;
  --color-warning: #ECC94B;
  --color-error: #F56565;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --transition-standard: all 0.3s ease;
  --font-family: 'Manrope', sans-serif;
}


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

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

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

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

a:hover, a:focus-visible {
  color: color-mix(in srgb, var(--color-primary) 80%, black);
  text-decoration: underline;
}

button, .lv-button {
  font-family: var(--font-family);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-standard);
  background-color: var(--color-primary);
  color: white;
  font-size: 1rem;
}

button:hover, .lv-button:hover, 
button:focus-visible, .lv-button:focus-visible {
  background-color: color-mix(in srgb, var(--color-primary) 80%, black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.lv-button-secondary {
  background-color: var(--color-secondary);
}

.lv-button-secondary:hover, 
.lv-button-secondary:focus-visible {
  background-color: color-mix(in srgb, var(--color-secondary) 80%, black);
}

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

.lv-button-outline:hover, 
.lv-button-outline:focus-visible {
  background-color: var(--color-primary);
  color: white;
}


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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}


.lv-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.lv-main {
  flex: 1;
}


.lv-header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lv-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.lv-logo {
  height: 40px;
  width: auto;
}

.lv-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.lv-nav-link {
  font-weight: 500;
  position: relative;
}

.lv-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: var(--transition-standard);
}

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

.lv-contact-phone {
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lv-contact-phone i {
  color: var(--color-secondary);
}

.lv-menu-button {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.5rem;
}


.lv-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 300px;
  background-color: white;
  box-shadow: var(--shadow-lg);
  padding: 2rem 1rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.lv-mobile-nav.active {
  transform: translateX(0);
  display: block;
}

.lv-mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.lv-mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.lv-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lv-mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.lv-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}


.lv-breadcrumbs {
  padding: 1rem 0;
  background-color: color-mix(in srgb, var(--color-bg-light) 90%, var(--color-border-light));
}

.lv-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0 1rem;
}

.lv-breadcrumbs-item {
  display: flex;
  align-items: center;
}

.lv-breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-text-secondary);
}

.lv-breadcrumbs-link {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

.lv-breadcrumbs-current {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.875rem;
}


.lv-spotlight {
  background-color: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.lv-spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem 1rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.lv-spotlight-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.lv-spotlight-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.lv-spotlight-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lv-spotlight-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.lv-benefits {
  padding: 5rem 1rem;
}

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

.lv-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.lv-benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-standard);
}

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

.lv-benefit-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.lv-benefit-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.lv-benefit-description {
  color: var(--color-text-secondary);
}


.lv-services {
  padding: 5rem 1rem;
  background-color: color-mix(in srgb, var(--color-bg-light) 95%, var(--color-border-light));
}

.lv-services-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lv-services-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.lv-service-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-standard);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.lv-service-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.lv-service-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.lv-service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.lv-service-description {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.lv-service-link {
  align-self: flex-start;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lv-service-link i {
  transition: var(--transition-standard);
}

.lv-service-link:hover i {
  transform: translateX(5px);
}


.lv-metrics {
  padding: 5rem 1rem;
  background-color: var(--color-primary);
  color: white;
}

.lv-metrics-title {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.lv-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.lv-metric-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(5px);
}

.lv-metric-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.lv-metric-label {
  font-size: 1rem;
  opacity: 0.9;
}


.lv-process {
  padding: 5rem 1rem;
}

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

.lv-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.lv-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lv-step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.lv-step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% - 3rem);
  height: 2px;
  background-color: var(--color-secondary);
  opacity: 0.5;
}

.lv-process-step:last-child .lv-step-number::after {
  display: none;
}

.lv-step-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.lv-step-description {
  color: var(--color-text-secondary);
}


.lv-calculators-preview {
  padding: 5rem 1rem;
  background-color: color-mix(in srgb, var(--color-bg-light) 95%, var(--color-border-light));
}

.lv-calculators-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lv-calculators-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lv-calculators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lv-calculator-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-standard);
}

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

.lv-calculator-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin: 2rem auto;
  text-align: center;
}

.lv-calculator-content {
  padding: 0 1.5rem 1.5rem;
}

.lv-calculator-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.lv-calculator-description {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.lv-calculator-link {
  display: block;
  text-align: center;
  font-weight: 500;
}


.lv-errors-preview {
  padding: 5rem 1rem;
}

.lv-errors-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lv-errors-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lv-errors-list {
  max-width: 800px;
  margin: 0 auto;
}

.lv-error-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.lv-error-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lv-error-icon {
  color: var(--color-error);
  font-size: 1.5rem;
}

.lv-error-description {
  color: var(--color-text-secondary);
}

.lv-errors-cta {
  text-align: center;
  margin-top: 2rem;
}


.lv-contact-form-section {
  padding: 5rem 1rem;
  background-color: var(--color-primary);
  color: white;
}

.lv-contact-form-title {
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.lv-contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.lv-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

.lv-form-input,
.lv-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition-standard);
}

.lv-form-input:focus,
.lv-form-textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 67, 101, 0.1);
}

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

.lv-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lv-form-checkbox input {
  margin-top: 0.3rem;
}

.lv-form-checkbox label {
  color: var(--color-text-primary);
  font-size: 0.875rem;
}

.lv-form-submit {
  width: 100%;
}


.lv-footer {
  background-color: var(--color-bg-dark);
  color: white;
  padding: 3rem 1rem;
}

.lv-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.lv-footer-about {
  max-width: 350px;
}

.lv-footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.lv-footer-description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.lv-footer-contact {
  list-style: none;
  padding: 0;
}

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

.lv-footer-contact i {
  color: var(--color-accent);
  margin-top: 0.25rem;
}

.lv-footer-nav-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.lv-footer-nav {
  list-style: none;
  padding: 0;
}

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

.lv-footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-standard);
}

.lv-footer-nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.lv-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.lv-footer-copyright {
  opacity: 0.8;
  font-size: 0.875rem;
}

.lv-footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lv-footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}


.lv-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.lv-cookie-consent.active {
  display: block;
}

.lv-cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.lv-cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.lv-cookie-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

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

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

.lv-cookie-settings-button:hover {
  background-color: rgba(42, 67, 101, 0.1);
}

.lv-cookie-accept-button {
  background-color: var(--color-primary);
}

.lv-cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.lv-cookie-settings-modal.active {
  display: flex;
}

.lv-cookie-modal-content {
  background-color: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

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

.lv-cookie-modal-title {
  font-size: 1.5rem;
}

.lv-cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0.5rem;
}

.lv-cookie-categories {
  margin-bottom: 1.5rem;
}

.lv-cookie-category {
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

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

.lv-cookie-category-title {
  font-size: 1.25rem;
  margin: 0;
}

.lv-cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

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

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

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

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

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

.lv-cookie-category-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.lv-cookie-necessary {
  opacity: 0.7;
}

.lv-cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.lv-cookie-save-button {
  background-color: var(--color-secondary);
}

.lv-cookie-accept-all-button {
  background-color: var(--color-primary);
}


.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  background-color: white;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  border-radius: var(--radius-lg);
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal__title {
  font-size: 1.5rem;
  margin: 0;
}

.modal__close {
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal__content {
  margin-bottom: 2rem;
}

.modal__footer {
  display: flex;
  justify-content: flex-end;
}


.lv-calculator {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.lv-calculator-header {
  margin-bottom: 2rem;
}

.lv-calculator-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lv-calculator-result {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  border-left: 4px solid var(--color-secondary);
}

.lv-calculator-result-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.lv-calculator-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.lv-calculator-result-item {
  text-align: center;
}

.lv-calculator-result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.lv-calculator-result-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.lv-calculator-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(236, 201, 75, 0.1);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-warning);
}

.lv-calculator-explanation {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-light);
}


.lv-faq {
  padding: 5rem 1rem;
}

.lv-faq-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lv-faq-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lv-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.lv-faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.lv-faq-question {
  padding: 1.5rem;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-standard);
}

.lv-faq-question:hover {
  background-color: color-mix(in srgb, white 97%, var(--color-primary));
}

.lv-faq-question h3 {
  margin: 0;
  font-size: 1.25rem;
}

.lv-faq-icon {
  font-size: 1.5rem;
  transition: var(--transition-standard);
}

.lv-faq-item.active .lv-faq-icon {
  transform: rotate(180deg);
}

.lv-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: white;
}

.lv-faq-item.active .lv-faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}


.lv-errors {
  padding: 5rem 1rem;
}

.lv-errors-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lv-errors-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lv-error-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.lv-error-card-header {
  padding: 1.5rem;
  background-color: var(--color-primary);
  color: white;
}

.lv-error-card-title {
  margin: 0;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lv-error-card-content {
  padding: 1.5rem;
}

.lv-error-card-section {
  margin-bottom: 1.5rem;
}

.lv-error-card-section-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.lv-checklist {
  list-style: none;
  padding: 0;
}

.lv-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-light);
}

.lv-checklist-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lv-checklist-icon {
  color: var(--color-secondary);
  margin-top: 0.25rem;
}

.lv-scenario {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.lv-scenario-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}


.lv-contact {
  padding: 5rem 1rem;
}

.lv-contact-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lv-contact-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.lv-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.lv-contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.lv-contact-info-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.lv-contact-list {
  list-style: none;
  padding: 0;
}

.lv-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-light);
}

.lv-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lv-contact-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.lv-contact-item-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.lv-contact-item-content p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

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


.lv-thanks {
  padding: 5rem 1rem;
  text-align: center;
}

.lv-thanks-icon {
  font-size: 5rem;
  color: var(--color-secondary);
  margin-bottom: 2rem;
}

.lv-thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lv-thanks-message {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.lv-thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


.lv-legal {
  padding: 5rem 1rem;
}

.lv-legal-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lv-legal-date {
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.lv-legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.lv-legal-section {
  margin-bottom: 2rem;
}

.lv-legal-section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.lv-legal-list {
  padding-left: 1.5rem;
}

.lv-legal-list li {
  margin-bottom: 0.5rem;
}


.iti {
  width: 100%;
}


@media (max-width: 992px) {
  .lv-spotlight-content {
    max-width: 100%;
  }
  
  .lv-spotlight-background {
    opacity: 0.2;
    width: 100%;
  }
  
  .lv-step-number::after {
    display: none;
  }
  
  .lv-process-step {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .lv-nav {
    display: none;
  }
  
  .lv-menu-button {
    display: block;
  }
  
  .lv-spotlight-title {
    font-size: 2.25rem;
  }
  
  .lv-footer-content {
    grid-template-columns: 1fr;
  }
  
  .lv-footer-about {
    max-width: 100%;
  }
  
  .lv-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .lv-cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .lv-spotlight-content {
    padding: 3rem 1rem;
  }
  
  .lv-spotlight-title {
    font-size: 1.75rem;
  }
  
  .lv-spotlight-description {
    font-size: 1rem;
  }
  
  .lv-spotlight-cta {
    flex-direction: column;
  }
  
  .lv-spotlight-cta .lv-button {
    width: 100%;
  }
  
  .lv-metric-value {
    font-size: 2.25rem;
  }
}


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

.lv-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

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

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