/* ===================================
   LOVILUZ ENERGÍA - STYLES
   Vanilla CSS converted from Tailwind
   =================================== */

/* === CSS RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

/* === CSS VARIABLES === */
:root {
  --color-primary: #ff8200;
  --color-primary-hover: #ffa234;
  --color-primary-light: #ffe5cb;
  --color-primary-lighter: #ffebd4;
  --color-primary-lightest: #fff7ed;
  --color-primary-dark: #d96d00;
  --color-bg-main: #fcf5ee;
  --color-bg-gray: #ebebeb;
  --color-text-dark: #1f2937;
  --color-text-gray: #4b5563;
  --color-text-light: #6b7280;
  --color-white: #ffffff;
  --color-black: #000000;
}

/* === LAYOUT === */
.w-full {
  width: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.h-8 {
  height: 2rem;
}
.h-10 {
  height: 2.5rem;
}
.h-14 {
  height: 3.5rem;
}
.h-32 {
  height: 8rem;
}
.w-auto {
  width: auto;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-10 {
  width: 2.5rem;
}
.w-60 {
  width: 15rem;
}
.max-w-xs {
  max-width: 20rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}

/* === FLEXBOX === */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}

/* === GRID === */
.grid {
  display: grid;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-2 {
  column-gap: 0.5rem;
}
.gap-x-4 {
  column-gap: 1rem;
}
.gap-x-6 {
  column-gap: 1.5rem;
}
.gap-x-8 {
  column-gap: 2rem;
}
.gap-y-4 {
  row-gap: 1rem;
}
.gap-y-5 {
  row-gap: 1.25rem;
}

/* === SPACING === */
.p-0 {
  padding: 0;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-7 {
  padding: 1.75rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-16 {
  padding-left: 4rem;
}

.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-8 {
  margin-left: 2rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-auto {
  margin-top: auto;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.-mt-16 {
  margin-top: -4rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-5 > * + * {
  margin-top: 1.25rem;
}

/* === POSITIONING === */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}

/* === COLORS === */
.bg-white {
  background-color: var(--color-white);
}
.bg-black {
  background-color: var(--color-black);
}
.text-white {
  color: var(--color-white);
}
.text-black {
  color: var(--color-black);
}
.text-gray-700 {
  color: #374151;
}
.text-gray-800 {
  color: #1f2937;
}
.text-gray-900 {
  color: var(--color-text-dark);
}

/* Loviluz brand colors */
.bg-primary {
  background-color: var(--color-primary);
}
.bg-primary-light {
  background-color: var(--color-primary-light);
}
.bg-primary-lighter {
  background-color: var(--color-primary-lighter);
}
.bg-primary-lightest {
  background-color: var(--color-primary-lightest);
}
.bg-primary-dark {
  background-color: var(--color-primary-dark);
}
.bg-main {
  background-color: var(--color-bg-main);
}
.bg-gray {
  background-color: var(--color-bg-gray);
}
.text-primary {
  color: var(--color-primary);
}
.text-primary-hover {
  color: var(--color-primary-hover);
}
.border-primary {
  border-color: var(--color-primary);
}
.border-primary-light {
  border-color: var(--color-primary-light);
}

/* Tailwind arbitrary color values */
.bg-\[\#fcf5ee\] {
  background-color: #fcf5ee;
}
.bg-\[\#ff8200\] {
  background-color: #ff8200;
}
.bg-\[\#ffe5cb\] {
  background-color: #ffe5cb;
}
.bg-\[\#fff7ed\] {
  background-color: #fff7ed;
}
.bg-\[\#d96d00\] {
  background-color: #d96d00;
}
.text-\[\#ff8200\] {
  color: #ff8200;
}
.text-\[\#ffa234\] {
  color: #ffa234;
}
.text-\[\#404040\] {
  color: #404040;
}
.text-\[\#FFF7ED\] {
  color: #fff7ed;
}
.text-\[\#FFD299\] {
  color: #ffd299;
}
.border-\[\#ff8200\] {
  border-color: #ff8200;
}
.border-\[\#ffe5cb\] {
  border-color: #ffe5cb;
}

/* Tailwind hover states with arbitrary colors */
.hover\:bg-\[\#ffa234\]:hover {
  background-color: #ffa234;
}
.hover\:text-\[\#FFA234\]:hover {
  color: #ffa234;
}
.hover\:text-\[\#FFD299\]:hover {
  color: #ffd299;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}
.focus\:ring-\[\#ffe5cb\]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #ffe5cb;
}

/* === BORDERS === */
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-4 {
  border-top-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}

/* === SHADOWS === */
.shadow {
  box-shadow:
    0 1px 3px 0 rgb(0 0 0 / 0.1),
    0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* === TYPOGRAPHY === */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.leading-tight {
  line-height: 1.25;
}
.leading-snug {
  line-height: 1.375;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.underline {
  text-decoration: underline;
}
.whitespace-nowrap {
  white-space: nowrap;
}

/* === BACKGROUNDS === */
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-black\/20 {
  background-color: rgba(0, 0, 0, 0.2);
}
.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

/* === OPACITY === */
.opacity-50 {
  opacity: 0.5;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-80 {
  opacity: 0.8;
}

/* === DISPLAY === */
.hidden {
  display: none;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}

/* === OVERFLOW === */
.overflow-x-hidden {
  overflow-x: hidden;
}

/* === MIN HEIGHTS === */
.min-h-60px {
  min-height: 60px;
}

/* === TRANSITIONS === */
.transition {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* === HOVER STATES === */
.hover-underline:hover {
  text-decoration: underline;
}
.hover-text-primary:hover {
  color: var(--color-primary-hover);
}
.hover-bg-primary:hover {
  background-color: var(--color-primary-hover);
}
.hover-bg-primary-light:hover {
  background-color: var(--color-primary-light);
}
.hover-text-black:hover {
  color: var(--color-black);
}
.hover-text-primary-lighter:hover {
  color: #ffd299;
}
.hover-opacity-80:hover {
  opacity: 0.8;
}

/* === FOCUS STATES === */
.focus-outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-ring-2:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

/* === COMPONENT STYLES === */

/* Top Bar */
.top-bar {
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
}

/* Header / Navigation */
header {
  width: 100%;
  background-color: white;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-primary-light);
}

nav {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  height: 3.5rem;
  position: relative;
}

nav ul {
  list-style: none;
  display: none;
  gap: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  font-size: 1rem;
}

nav ul a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 150ms;
}

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

/* Mobile menu button - visible on mobile, hidden on desktop */
.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  z-index: 40;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu ul a {
  display: block;
  padding: 0.75rem;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 150ms;
}

.mobile-menu ul a:hover {
  background-color: var(--color-primary-light);
}

/* Forms */
input,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input[type="checkbox"] {
  width: auto;
}

input[type="file"] {
  background-color: var(--color-primary-lightest);
  font-size: 0.875rem;
}

button[type="submit"] {
  cursor: pointer;
  border: none;
}

/* Footer */
footer {
  color: white;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Cards */
.card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid var(--color-primary);
}

/* Icons */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* === UTILITY CLASSES === */
.min-w-0 {
  min-width: 0;
}

/* === RESPONSIVE DESIGN === */
@media (min-width: 768px) {
  /* Tablet and above */
  .top-bar {
    flex-direction: row;
    padding: 0.5rem 2rem;
  }

  nav ul {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }

  .md-flex {
    display: flex;
  }
  .md-flex-row {
    flex-direction: row;
  }
  .md-items-center {
    align-items: center;
  }
  .md-justify-start {
    justify-content: flex-start;
  }
  .md-justify-between {
    justify-content: space-between;
  }
  .md-justify-end {
    justify-content: flex-end;
  }
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md-col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md-col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md-w-1-2 {
    width: 50%;
  }
  .md-w-4-12 {
    width: 33.333333%;
  }
  .md-w-5-12 {
    width: 41.666667%;
  }
  .md-w-6-12 {
    width: 50%;
  }
  .md-w-7-12 {
    width: 58.333333%;
  }
  .md-w-auto {
    width: auto;
  }

  .md-h-6 {
    height: 1.5rem;
  }
  .md-w-6 {
    width: 1.5rem;
  }

  .md-px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .md-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md-px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .md-mt-0 {
    margin-top: 0;
  }
  .md-mt-20 {
    margin-top: 5rem;
  }
  .md-ml-8 {
    margin-left: 2rem;
  }

  .md-text-left {
    text-align: left;
  }
  .md-text-right {
    text-align: right;
  }
  .md-text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md-text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md-text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md-gap-x-4 {
    column-gap: 1rem;
  }
  .md-gap-x-6 {
    column-gap: 1.5rem;
  }
  .md-gap-x-8 {
    column-gap: 2rem;
  }

  .md-max-w-lg {
    max-width: 32rem;
  }
  .md-max-w-xl {
    max-width: 36rem;
  }
  .md-max-w-2xl {
    max-width: 42rem;
  }

  /* Tailwind syntax support with colons */
  .md\:hidden {
    display: none;
  }
  .md\:flex {
    display: flex;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-start {
    justify-content: flex-start;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:justify-end {
    justify-content: flex-end;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .md\:h-6 {
    height: 1.5rem;
  }
  .md\:w-6 {
    width: 1.5rem;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:gap-x-8 {
    column-gap: 2rem;
  }
}

@media (min-width: 1024px) {
  /* Desktop */
  .lg-text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .lg-max-w-xl {
    max-width: 36rem;
  }
  .lg-max-w-2xl {
    max-width: 42rem;
  }
}

@media (min-width: 1280px) {
  /* Large desktop */
  .xl-px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .xl-max-w-2xl {
    max-width: 42rem;
  }
}
/* === CUSTOM PATTERNS === */
.pattern-dots {
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 4px 4px;
} /* === WIDGET CONTENEDOR === */
.contact-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-family: system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
} /* === BOTÓN PRINCIPAL === */
.whatsapp-hint {
  max-width: 220px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-size: 12px;
  line-height: 1.25;
  text-align: right;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.contact-btn {
  background: linear-gradient(135deg, #ff3b30, #ff9500);
  color: #fff;
  border: none;
  width: 150px;
  height: 52px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  width: 190px;
  height: 52px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.contact-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
/* === TARJETA DESPLEGABLE === */
.contact-card {
  position: absolute;
  bottom: 130px;
  right: 0;
  width: 270px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.contact-card.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
} /* === BOTÓN CERRAR === */
.close-card {
  background: none;
  border: none;
  font-size: 22px;
  float: right;
  cursor: pointer;
  color: #444;
  transition: color 0.2s ease;
}
.close-card:hover {
  color: #ff3b30;
} /* === CONTENIDO === */
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}
.contact-info p {
  margin: 8px 0;
  font-size: 15px;
}
.contact-card a {
  color: #ff3b30;
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}
.contact-call-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-call-field {
  width: 100%;
  border: 1px solid #ffb46d;
  border-radius: 10px;
  padding: 0.62rem 0.75rem;
  font-size: 0.95rem;
  color: #1f2937;
}
.contact-call-field:focus {
  outline: 2px solid #ffd299;
  border-color: #ff8200;
}
.contact-call-legal {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #374151;
}
.contact-call-legal input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: #ff8200;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 0.15rem;
}
.contact-call-submit {
  width: 100%;
  background: linear-gradient(135deg, #ff3b30, #ff9500);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.contact-call-submit:hover {
  opacity: 0.95;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
@keyframes cohete {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.animate-cohete {
  animation: cohete 2.8s ease-in-out infinite;
}
/* Permitir scroll en móvil */
#formulario-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto; /* scroll externo */
}

/* Contenedor del modal */
#formulario-overlay .modal-content {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  max-height: 90vh; /* evita que se salga */
  overflow-y: auto; /* scroll interno */
}

/* La X para cerrar */
#cerrar-formulario {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 99999; /* siempre visible */
}

/* === FIX MODAL OVERLAY === */

/* Fondo oscuro del formulario (Overlay) */
#overlay-info,
#formulario-overlay {
  z-index: 2000 !important; /* Valor mucho mayor que el del header (50) */
  background-color: rgba(0, 0, 0, 0.75) !important; /* Oscurece más el fondo */
  backdrop-filter: blur(4px); /* Efecto profesional de desenfoque */
}

/* El Modal en sí (el recuadro blanco) */
#modal-info,
.modal-content {
  z-index: 2100 !important; /* Siempre por encima del overlay */
}

/* Asegurar que el header no "atraviese" el fondo oscuro */
header {
  /* Mantenemos su z-index original pero el overlay ahora es superior */
  z-index: 50;
}

/* Bloqueo de scroll cuando el modal está abierto */
body.overflow-hidden {
  overflow: hidden !important;
  height: 100vh;
}
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 15px;
  height: 400px;
}

/* Contenedor */
.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Cada slide */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Fade suave */
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

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

/* Texto */
.slide-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 130, 0, 0.85);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.dot.active {
  background-color: #ff8200;
  transform: scale(1.3);
}

/* Contenedor principal del Slide */
.slide-lovu-solid {
  background-color: #ffffff;
  display: block;
}

.slide-content-wrapper {
  display: flex;
  height: 100%;
}

.offer-image-container {
  width: 200px; /* Tamaño ideal para la imagen de oferta */
  margin-bottom: 20px;
}

.check-list-white {
  list-style: none;
  color: white;
  padding: 0;
}

.check-list-white li {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 10px 0;
}

.title-orange {
  color: #ff8200 !important;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
}

.subtitle-gray {
  color: #4b5563;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.btn-la-quiero-solid {
  background-color: #ff8200;
  color: white !important;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 130, 0, 0.3);
  transition: transform 0.3s ease;
}

.btn-la-quiero-solid:hover {
  transform: scale(1.05);
}

/* Ajuste móvil */
@media (max-width: 768px) {
  .slide-content-wrapper {
    flex-direction: column;
  }
  .title-orange {
    font-size: 2.2rem;
  }
  .side-cta-white {
    align-items: center;
    text-align: center;
    padding: 30px;
  }
}

/* Contenedor de los puntos (Dots) */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10; /* Asegura que estén por encima de los colores */
}

/* Estilo de cada punto */
.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2); /* Color gris suave por defecto */
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white; /* Borde para que se vean sobre el naranja */
}

/* Punto activo */
.dot.active {
  background-color: #ff8200; /* Naranja Loviluz */
  transform: scale(1.3);
  border-color: #ffffff;
}

/* Invertir el orden de los colores para el segundo slide */
.slide-loviluz-brand .slide-content-wrapper.inv-diagonal {
  flex-direction: row-reverse;
}

.features-list-orange {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.features-list-orange li {
  margin: 12px 0;
  color: #4b5563;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.features-list-orange li span {
  color: hsl(31, 100%, 50%);
  font-weight: bold;
  margin-right: 10px;
}

.brand-icon-container {
  background: rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 50%;
  border: 2px dashed white;
}

/* Ajuste móvil para el slide invertido */
@media (max-width: 768px) {
  .slide-loviluz-brand .slide-content-wrapper.inv-diagonal {
    flex-direction: column; /* En móvil siempre primero la imagen/color */
  }
}

/* AÑADIR/CAMBIAR POR ESTO */
.slide-cargador-electrico .side-info-solid {
  background: linear-gradient(135deg, #ff8200 0%, #d96d00 100%) !important;
}

/* Reutilizamos el estilo del contenedor circular para el icono */
.brand-icon-container {
  background: rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 50%;
  border: 2px dashed white;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* --- MOBILE FIX --- */
@media (max-width: 768px) {
  .slide-content-wrapper {
    display: flex;
    flex-direction: column; /* ← APILA LOS BLOQUES */
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 1rem;
  }

  .side-info-solid,
  .side-cta-white {
    width: 100%; /* ← QUE OCUPEN TODO EL ANCHO */
  }

  .offer-image-container img,
  .img-oferta {
    max-width: 80%; /* ← REDUCE LA IMAGEN */
    height: auto;
  }

  .check-list-white li {
    font-size: 1rem; /* ← TEXTO MÁS PEQUEÑO */
  }

  .btn-la-quiero-solid {
    width: 100%; /* ← BOTÓN RESPONSIVE */
    max-width: 280px;
  }
}
.carousel-arrows .arrow {
  width: 52px;
  height: 52px;
  background: rgba(187, 187, 187, 0.212);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(6px);
}

.carousel-arrows .arrow:hover {
  background: rgba(143, 143, 143, 0.192);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(219, 219, 219, 0.45);
}

.carousel-arrows svg {
  margin-top: 1px;
}

/* Asegura que las imágenes de los slides se adapten bien */
.slide {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Mejora para el contenedor del icono de rayo */
.slide-cargador-electrico .brand-icon-container {
  background: rgba(255, 130, 0, 0.1);
  border: 2px dashed rgba(255, 130, 0, 0.5);
  padding: 40px;
  border-radius: 50%;
}

/* Animación sutil de pulso para el rayo */
@keyframes pulse-orange {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
.animate-pulse {
  animation: pulse-orange 3s infinite ease-in-out;
}
/* === FIX COMPLETO PARA EL SLIDE 3 === */

.slide-cargador-electrico .slide-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  gap: 60px; /* Separación entre columnas */
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto; /* Centra el bloque completo */
}

/* Caja del texto */
.slide-cargador-electrico .side-cta-white {
  background: rgba(255, 255, 255, 0.92);
  padding: 40px;
  border-radius: 16px;
  max-width: 480px;
  text-align: center; /* CENTRA TODO EL TEXTO */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

/* Lista con ✔ */
.slide-cargador-electrico .features-list-orange {
  text-align: left;
  margin: 20px auto;
  max-width: 300px;
}

/* Caja del icono */
.slide-cargador-electrico .side-info-solid {
  text-align: center;
  max-width: 300px;
}
/* Mantener altura estable del hero entre slides (sin salto visual) */
.carousel-container.expand-slide3 {
  height: 400px !important;
  min-height: 0;
}
/* === SLIDE 3 – GLASS OSCURO PARA FONDO NARANJA === */

.slide-cargador-electrico .slide-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  gap: 28px;
  height: 100%;
}

/* Caja glass más contrastada */
.slide-cargador-electrico .side-cta-white-3 {
  padding: 24px 26px;
  max-width: 380px;
  text-align: left;
  transform: scale(0.92);
  transform-origin: left center;

  /* Glass oscuro para no competir con el fondo naranja */
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;

  color: white;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Todo blanco por defecto */
.slide-cargador-electrico .side-cta-white-3 * {
  color: white !important;
}

/* Títulos en naranja más profundo para destacar sobre fondo naranja */
.slide-cargador-electrico .side-cta-white-3 h2,
.slide-cargador-electrico .side-cta-white-3 h3 {
  font-size: 1.45rem !important;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ff6a00 !important; /* naranja más oscuro */
}

/* Lista más legible */
.slide-cargador-electrico .features-list-orange li {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 6px;
}

.slide-cargador-electrico .features-list-orange li span {
  color: #ff6a00 !important;
  font-size: 1.1rem;
}

/* Icono */
.slide-cargador-electrico .side-info-solid {
  transform: scale(0.78);
  transform-origin: center;
  opacity: 0.95;
}

/* Ajuste móvil */
@media (max-width: 768px) {
  .slide-cargador-electrico .slide-content-wrapper {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem;
    height: auto;
  }

  .slide-cargador-electrico .side-cta-white-3 {
    transform: scale(1);
    max-width: 100%;
    text-align: center;
    padding: 22px;
  }

  .slide-cargador-electrico .side-info-solid {
    transform: scale(1);
  }
}

/* Fallback del hero para entornos donde Tailwind CDN no carga */
.hero-slide1-layout,
.hero-slide2-layout {
  position: relative;
  z-index: 10;
}

.hero-slide1-layout {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-offer-wrap {
  display: flex;
  justify-content: center;
}

.hero-offer-card {
  max-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.25rem;
}

.hero-main-title {
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
}

.hero-main-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: #fff;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.hero-main-cta {
  display: inline-block;
  background-color: #ff8200;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  text-decoration: none;
}

.hero-slide2-layout {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero-slide2-copy {
  flex: 1;
  min-width: 0;
  text-align: center;
  color: #fff;
}

.hero-slide2-cta-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slide2-cta {
  background-color: #ff8200;
  color: #fff !important;
  border: 0;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 18px 45px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 130, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.hero-slide2-cta:hover {
  transform: scale(1.05);
}

#abrir-modal-info {
  background-color: #ff8200 !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 20px rgba(255, 130, 0, 0.3) !important;
}

@media (min-width: 768px) {
  .hero-slide1-layout {
    gap: 3rem;
  }

  .hero-copy-wrap {
    text-align: left;
  }

  .hero-slide2-copy {
    text-align: right;
  }

  .hero-slide2-cta-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .carousel-container {
    height: 540px;
  }

  .hero-slide1-layout,
  .hero-slide2-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-slide2-cta-wrap {
    align-items: center;
    flex: 0 0 auto;
    width: 100%;
  }

  .hero-main-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-slide2-cta,
  #abrir-modal-info {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 100% !important;
    max-width: 280px !important;
    min-height: 44px;
    height: auto !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    padding: 0.75rem 1.2rem !important;
    border-radius: 50px;
    white-space: nowrap;
    text-align: center;
  }

  .slide-cargador-electrico .slide-content-wrapper {
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .slide-cargador-electrico .side-cta-white-3 {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .slide-cargador-electrico .side-cta-white-3 h2,
  .slide-cargador-electrico .side-cta-white-3 h3 {
    font-size: 1.05rem !important;
    margin-bottom: 8px;
  }

  .slide-cargador-electrico .features-list-orange li {
    font-size: 0.83rem;
    margin: 5px 0;
    line-height: 1.22;
  }

  .slide-cargador-electrico .side-info-solid {
    display: none;
  }
}

/* Ajustes de estabilidad para evitar solapes en móvil/tablet */
@media (max-width: 1024px) {
  .slide-cargador-electrico .slide-content-wrapper {
    gap: 1rem;
    padding: 1rem;
  }

  .slide-cargador-electrico .side-cta-white-3 {
    transform: none;
    max-width: 100%;
  }

  .carousel-arrows {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .carousel-arrows .arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 56px;
  }

  .contact-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 1200;
    border-top: 1px solid rgba(255, 130, 0, 0.15);
  }

  .contact-btn {
    flex: 1;
    width: auto;
    height: 40px;
    font-size: 13px;
    border-radius: 20px;
  }

  .whatsapp-btn {
    flex: 1;
    width: auto;
    height: 40px;
    font-size: 13px;
    border-radius: 20px;
  }

  .whatsapp-hint {
    display: none;
  }

  .contact-card {
    right: 8px;
    left: 8px;
    bottom: 60px;
    width: auto;
  }

  .carousel-container {
    border-radius: 12px;
  }

  .carousel-dots {
    bottom: 10px;
  }

  .slide-cargador-electrico .side-info-solid {
    max-width: 220px;
  }
}

@media (max-width: 390px) {
  .carousel-container {
    height: 560px;
  }

  .hero-main-title {
    font-size: 1.8rem;
  }

  .hero-main-subtitle {
    font-size: 0.98rem;
  }

  .hero-slide2-cta,
  #abrir-modal-info {
    max-width: 260px !important;
    font-size: 0.95rem !important;
    padding: 0.7rem 1rem !important;
  }
}

/* Hero de tarifas: evitar solapes en móvil */
@media (max-width: 1024px) {
  .tarifas-hero {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
    min-height: 0 !important;
  }

  .tarifas-hero-grid {
    gap: 1rem !important;
  }

  .tarifas-hero-card {
    min-height: 0 !important;
    padding: 1.25rem !important;
    margin-top: 0.5rem !important;
  }

  .tarifas-hero-card h1 {
    font-size: clamp(2rem, 7vw, 2.6rem) !important;
    line-height: 1.05;
  }

  .tarifas-hero-card h2 {
    font-size: clamp(1rem, 3.6vw, 1.25rem) !important;
    margin-bottom: 0.8rem !important;
  }

  .tarifas-hero-card ul {
    gap: 0.55rem !important;
  }

  .tarifas-hero-card ul li {
    font-size: 0.95rem !important;
    line-height: 1.3;
  }

  .tarifas-hero-badge {
    position: static !important;
    transform: none !important;
    display: flex;
    justify-content: center;
    margin-bottom: 0.6rem;
  }

  .tarifas-hero-badge img {
    width: 140px !important;
    max-width: 42vw;
    height: auto !important;
  }

  .tarifas-hero-cta {
    width: 100% !important;
    max-width: 280px !important;
    font-size: 1.05rem !important;
    line-height: 1.15 !important;
    padding: 0.8rem 1rem !important;
    border-width: 2px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 767px) {
  .tarifas-hero-card ul li:last-child {
    margin-top: 0.4rem !important;
    font-size: 0.92rem !important;
    text-align: left !important;
    padding-left: 0.7rem !important;
  }

  .tarifas-hero .material-symbols-outlined {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }
}
