@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("/assets/fonts/google/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/google/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/google/material-symbols-rounded-subset.woff2") format("woff2");
}

:root {
  /* Colors */
  --color-primary: #2563FF;
  --color-primary-light: #EDF4FF;
  --color-primary-dark: #1248DE;
  --color-secondary: #00D4FF;
  --color-accent: #7C5CFF;

  --color-success: #00C9A7;
  --color-success-light: #E8FBF6;
  --color-warning: #F5B63D;
  --color-warning-light: #FFF7E6;
  --color-error: #FF5C7A;
  --color-error-light: #FFF0F3;

  --voice-ink: #0B132B;
  --voice-slate: #475569;
  --voice-muted: #748198;
  --voice-cloud: #F7F9FC;
  --voice-paper: #FFFFFF;
  --voice-inset: #F2F6FB;
  --voice-line: rgba(11, 19, 43, 0.09);

  /* Typography */
  --font-display: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: 
    linear-gradient(135deg, rgba(37, 99, 255, 0.06) 0 1px, transparent 1px) 0 0 / 36px 36px,
    radial-gradient(circle at 96% 0%, rgba(0, 212, 255, 0.12), transparent 26rem),
    var(--voice-cloud);
  color: var(--voice-ink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img, video, canvas, svg {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(37, 99, 255, 0.42);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
}

/* Material Symbols base */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga';
}
.material-symbols-rounded.text-sm { font-size: 18px; }
.material-symbols-rounded.text-base { font-size: 24px; }
.material-symbols-rounded.text-lg { font-size: 28px; }
.material-symbols-rounded.text-xl { font-size: 32px; }
.material-symbols-rounded.text-2xl { font-size: 36px; }
.material-symbols-rounded.text-3xl { font-size: 40px; }
.material-symbols-rounded.text-4xl { font-size: 48px; }
.material-symbols-rounded.text-5xl { font-size: 56px; }
.material-symbols-rounded.text-6xl { font-size: 64px; }

/* Gradients */
.bg-gradient-primary {
  background: linear-gradient(135deg, #2563FF, #0077FF 58%, #00BDF2);
}

.bg-gradient-cta {
  background: linear-gradient(135deg, #2563FF, #1268FF);
}

.bg-gradient-card {
  background: 
    radial-gradient(circle at 92% 16%, rgba(0,212,255,0.14), transparent 12rem),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(237,244,255,0.84));
}

/* Components */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--voice-line);
  max-width: 100vw !important;
  overflow: visible !important;
}

.btn-primary {
  background: linear-gradient(135deg, #2563FF, #1268FF);
  color: white;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(37, 99, 255, 0.22);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 99, 255, 0.3);
}

.btn-outline {
  background: #FFFFFF;
  border: 1px solid var(--voice-line);
  color: var(--voice-slate);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  border-color: rgba(37, 99, 255, 0.26);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.04);
}

.hero-cta {
  min-width: 12.25rem;
  min-height: 3.5rem;
  white-space: nowrap !important;
  text-align: center;
  overflow-wrap: normal !important;
}

.hero-cta .material-symbols-rounded {
  flex: 0 0 auto;
}

.hero-cta span {
  overflow-wrap: normal !important;
}

.pricing-app-style .pricing-plan-card {
  min-height: 100%;
}

@media (min-width: 1280px) {
  .pricing-app-style .pricing-plan-card {
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }
}

.pricing-app-style .pricing-plan-card h3,
.pricing-app-style .pricing-plan-card .price-val {
  letter-spacing: 0;
}

.pricing-app-style .pricing-plan-card li {
  line-height: 1.35;
}

.pricing-app-style .pricing-plan-card .material-symbols-rounded {
  flex: 0 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--voice-line);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(11, 19, 43, 0.04),
              0 1px 8px rgba(11, 19, 43, 0.04);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(37, 99, 255, 0.26);
  box-shadow: 0 12px 28px rgba(11, 19, 43, 0.08);
}

input, textarea, select {
  background: var(--voice-inset);
  border: 1px solid var(--voice-line);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--voice-ink);
  outline: none;
  transition: all 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 255, 0.12);
}

/* Voice Elements */
.voice-button {
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: #FF5C7A;
  border: 3px solid rgba(255,255,255,0.58);
  box-shadow:
    0 0 0 14px rgba(255,255,255,0.12),
    0 24px 62px rgba(255,92,122,0.48),
    0 18px 44px rgba(0,0,0,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voice-button:hover {
  transform: scale(1.05);
}

.voice-button .material-symbols-rounded {
  font-size: 48px;
  color: white;
}

.voice-panel {
  background: linear-gradient(135deg, #2563FF, #0077FF 58%, #00BDF2);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(37, 99, 255, 0.28);
  color: white;
  padding: 2rem;
}

/* Utils que estaban inline */
.bg-gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  pointer-events: none !important;
}

.btn-hover { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.btn-hover:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 25px -5px rgba(0, 102, 255, 0.4), 0 8px 10px -6px rgba(0, 102, 255, 0.1); }

.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1); }

/* Simulador Animaciones */
.sim-step { display: none; opacity: 0; transition: opacity 0.5s ease; }
.sim-step.active { display: block; opacity: 1; }

.pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 92, 122, 0.3);
  z-index: -1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.wave-bar {
  width: 4px;
  background-color: #FFFFFF;
  border-radius: 999px;
  animation: wave 1s ease-in-out infinite alternate;
}
.wave-bar:nth-child(1) { animation-delay: 0.0s; height: 10px; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 40px; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 20px; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 35px; }
@keyframes wave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

@media (max-width: 480px) {
  html,
  body {
    width: 100%;
    overflow-x: clip;
  }

  header.glass > nav,
  header.glass > div {
    min-width: 0;
  }

  header.glass img[alt*="VoFactu"],
  header.glass img[alt*="Vofactu"] {
    max-width: 8.75rem;
    height: auto;
  }

  header.glass a[href*="app.vofactu.com/register"] {
    max-width: 6.35rem;
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
    white-space: nowrap;
  }

  header.glass a[href*="app.vofactu.com/register"] .material-symbols-rounded {
    display: none;
  }

  main > section:first-child {
    padding-top: 5.75rem !important;
    padding-bottom: 3rem !important;
  }

  .home-hero {
    padding-top: 5.35rem !important;
    padding-bottom: 2.5rem !important;
  }

  .home-hero > div {
    max-width: 100% !important;
    overflow: hidden;
  }

  main > section:first-child h1 {
    font-size: clamp(2.1rem, 10vw, 2.9rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
  }

  #home-hero-title {
    font-size: clamp(1.35rem, 5.4vw, 1.55rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 1rem !important;
    max-width: min(18.75rem, calc(100vw - 2rem)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-wrap: balance;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  #home-hero-title + p {
    font-size: 1rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1.25rem !important;
    max-width: min(20rem, calc(100vw - 2rem)) !important;
  }

  .home-hero .btn-primary {
    width: min(22rem, calc(100vw - 2rem)) !important;
    max-width: calc(100vw - 2rem) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  h1,
  h2,
  h3,
  p,
  a,
  span {
    overflow-wrap: anywhere;
  }

  #hero-title {
    display: inline;
    white-space: normal;
    line-height: 1.35;
  }

  #features-carousel {
    max-width: 100vw;
  }

  #cookie-banner {
    align-items: stretch;
  }

  #cookie-banner .flex.gap-3 {
    width: 100%;
  }

  #cookie-banner button {
    flex: 1 1 auto;
    min-width: 8.5rem;
  }

  #cookie-config-modal > div {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .pricing-hero {
    padding-top: 4.75rem !important;
  }

  .pricing-hero .pricing-intro {
    margin-bottom: 1.25rem !important;
  }

  .pricing-hero .pricing-intro h1 {
    margin-bottom: 0.75rem !important;
    font-size: clamp(1.95rem, 8vw, 2.35rem) !important;
  }

  .pricing-hero .pricing-intro p {
    display: none;
  }

  .pricing-hero .pricing-toggle {
    margin-bottom: 1.5rem !important;
  }

  .pricing-hero .pricing-card-first {
    padding: 1rem !important;
  }

  .pricing-app-style .pricing-plan-card {
    padding: 1rem !important;
    border-radius: 0.75rem !important;
  }

  .pricing-app-style .pricing-plans-grid {
    gap: 1rem !important;
  }

  .pricing-app-style .price-val {
    font-size: 2rem !important;
  }

  .pricing-hero .pricing-card-first .mb-5,
  .pricing-hero .pricing-card-first .mb-6 {
    margin-bottom: 0.75rem !important;
  }

  .pricing-hero .pricing-card-first .min-h-\[60px\],
  .pricing-hero .pricing-card-first .min-h-\[40px\] {
    min-height: 0 !important;
  }
}

@media (min-width: 1024px) and (max-height: 920px) {
  main > section:first-child {
    padding-top: 6.75rem !important;
    padding-bottom: 3.5rem !important;
  }

  main > section:first-child .grid {
    gap: 2.5rem !important;
  }

  main > section:first-child h1 {
    font-size: clamp(2.75rem, 3.65vw, 4rem) !important;
    line-height: 1.04 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: 0 !important;
  }

  main > section:first-child p.text-xl,
  main > section:first-child p.text-lg {
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.5rem !important;
  }

  main > section:first-child .btn-primary,
  main > section:first-child .btn-outline {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
  }

  main > section.presupuestos-hero {
    padding-top: 5.35rem !important;
  }

  main > section:first-child .hero-cta {
    min-width: 11rem;
    font-size: 1rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  main > section:first-child [class*="mb-10"] {
    margin-bottom: 1.5rem !important;
  }

  main > section:first-child [class*="mb-8"] {
    margin-bottom: 1.25rem !important;
  }

  main > section:first-child [class*="mb-6"] {
    margin-bottom: 1rem !important;
  }

  .pricing-hero {
    padding-top: 6.25rem !important;
  }

  .pricing-hero .pricing-intro {
    margin-bottom: 1.75rem !important;
  }

  .pricing-hero .pricing-intro p {
    display: none;
  }

  .pricing-hero .pricing-toggle {
    margin-bottom: 2rem !important;
  }

  .pricing-hero .pricing-card-first {
    padding: 1.25rem !important;
  }

  .pricing-app-style .pricing-plan-card {
    padding: 1.25rem !important;
  }

  .pricing-app-style .pricing-plans-grid {
    gap: 1rem !important;
  }

  .pricing-hero .pricing-card-first .mb-5,
  .pricing-hero .pricing-card-first .mb-6 {
    margin-bottom: 0.85rem !important;
  }

  .pricing-hero .pricing-card-first .min-h-\[60px\],
  .pricing-hero .pricing-card-first .min-h-\[40px\] {
    min-height: 0 !important;
  }
}

@media (max-width: 390px) {
  header.glass img[alt*="VoFactu"],
  header.glass img[alt*="Vofactu"] {
    max-width: 7.75rem;
  }

  header.glass a[href*="app.vofactu.com/register"] {
    max-width: 5.8rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  header.glass img[alt*="VoFactu"],
  header.glass img[alt*="Vofactu"] {
    max-width: 7.25rem;
    height: auto;
  }

  header.glass > div {
    width: min(100%, 24rem) !important;
    max-width: 24rem !important;
  }

  header.glass .flex.items-center.gap-4 {
    gap: 0.5rem !important;
  }

  #mobile-menu-btn {
    margin-right: 0.75rem !important;
  }

  header.glass a[href*="app.vofactu.com/register"] {
    display: none !important;
  }

  header.glass a[href*="app.vofactu.com/register"] .material-symbols-rounded {
    display: none;
  }

  .home-hero {
    padding-top: 5.35rem !important;
    padding-bottom: 2.5rem !important;
  }

  .home-hero > div {
    max-width: 100% !important;
    overflow: hidden;
  }

  .home-hero-copy {
    width: 100% !important;
    max-width: 20rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #home-hero-title {
    font-size: clamp(1.35rem, 5.4vw, 1.55rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 1rem !important;
    max-width: 18.5rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-wrap: balance;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  #home-hero-title + p {
    font-size: 1rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1.25rem !important;
    max-width: 18.5rem !important;
  }

  .home-hero .btn-primary {
    width: 100% !important;
    max-width: 18.5rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-hero-visual {
    width: 100% !important;
    max-width: 20rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}



/* Simulador de Ahorro */
.slider-custom {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  padding: 0;
}

.slider-custom::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 99, 255, 0.4);
  border: 3px solid white;
  transition: transform 0.1s;
}

.slider-custom::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.slider-custom::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 99, 255, 0.4);
  border: 3px solid white;
  transition: transform 0.1s;
}

.slider-custom::-moz-range-thumb:hover {
  transform: scale(1.1);
}

@keyframes glow-green {
  0% { box-shadow: 0 0 10px rgba(0, 201, 167, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 201, 167, 0.6); }
  100% { box-shadow: 0 0 10px rgba(0, 201, 167, 0.2); }
}

.animate-glow-green {
  animation: glow-green 2s infinite;
  border-color: #00c9a7 !important;
}

/* Custom Animations */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(0); }
}
.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Scrollbar Hide Utility */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

main > section:first-child #hero-title {
  display: inline !important;
  font-family: var(--font-family) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.25rem !important;
  letter-spacing: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 640px) {
  main:has(#hero-title) {
    overflow-x: clip;
  }

  main:has(#hero-title) section {
    overflow-x: clip;
  }

  main:has(#hero-title) section > div {
    max-width: min(100%, 24rem) !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  main:has(#hero-title) section:not(:first-child) h2 {
    max-width: min(18rem, calc(100vw - 2.4rem));
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(1.75rem, 7vw, 2.15rem) !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  main:has(#hero-title) section:not(:first-child) p {
    max-width: min(20rem, calc(100vw - 2.4rem));
    font-size: min(1rem, 4.3vw) !important;
    line-height: 1.55 !important;
  }

  main > section:first-child:has(#hero-title) {
    padding-top: 6.25rem !important;
    padding-bottom: 3rem !important;
    overflow-x: clip !important;
  }

  main > section:first-child:has(#hero-title) > div {
    width: 100% !important;
    max-width: 23rem !important;
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
    overflow: hidden;
  }

  main > section:first-child:has(#hero-title) .grid {
    display: block !important;
    gap: 1.75rem !important;
  }

  main > section:first-child:has(#hero-title) .text-center,
  main > section:first-child:has(#hero-title) .lg\:text-left {
    width: 100%;
    max-width: 16.75rem;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  main > section:first-child:has(#hero-title) .inline-flex:has(#hero-title) {
    width: fit-content;
    max-width: min(16.75rem, calc(100vw - 2.4rem));
    padding: 0.45rem 0.8rem !important;
    gap: 0.45rem !important;
    align-items: center;
    justify-content: center;
    white-space: normal;
  }

  main > section:first-child:has(#hero-title) #hero-icon {
    flex: 0 0 auto;
    font-size: 0.95rem !important;
  }

  main > section:first-child:has(#hero-title) #hero-title {
    display: inline !important;
    font-size: clamp(0.72rem, 2.8vw, 0.82rem) !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    text-wrap: balance;
  }

  main > section:first-child:has(#hero-title) h2 {
    max-width: min(16.75rem, calc(100vw - 2.4rem));
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1rem !important;
    font-size: clamp(1.55rem, 6.6vw, 2rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-wrap: balance;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  main > section:first-child:has(#hero-title) h2 span {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  main > section:first-child:has(#hero-title) h2 + p {
    max-width: min(16.75rem, calc(100vw - 2.4rem));
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.4rem !important;
    font-size: 0.97rem !important;
    line-height: 1.5 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  main > section:first-child:has(#hero-title) a[href*="app.vofactu.com/register"] {
    width: 100% !important;
    max-width: 16.75rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0.95rem 1.2rem !important;
    font-size: 1rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  main > section:first-child:has(#hero-title) .text-center,
  main > section:first-child:has(#hero-title) .lg\:text-left,
  main > section:first-child:has(#hero-title) .inline-flex:has(#hero-title),
  main > section:first-child:has(#hero-title) h2,
  main > section:first-child:has(#hero-title) h2 + p,
  main > section:first-child:has(#hero-title) a[href*="app.vofactu.com/register"] {
    max-width: 14rem !important;
  }

  main > section:first-child:has(#hero-title) h2 {
    font-size: clamp(1.35rem, 6vw, 1.6rem) !important;
  }

  main > section:first-child:has(#hero-title) h2 + p {
    font-size: 0.92rem !important;
  }

  main > section:first-child:has(#hero-title) a[href*="app.vofactu.com/register"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    font-size: 0.95rem !important;
  }
}
