/* =====================
   VARIABLES
===================== */

:root {
  --ear-bordo: #660618;
  --ear-bordo-light: #7F2630;
  --ear-gris-oscuro: #3C3C3A;
  --ear-gris: #E1E1E0;
  --ear-verde: #88B625;
  --ear-verde-light: #9CC63B;

  --ear-text: #3C3C3A;
  --ear-white: #ffffff;
}

/* =====================
   RESET BASE
===================== */

body {
  font-family: 'Gotham', Arial, sans-serif;
  color: var(--ear-text);
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

.ear-highlight {
  color: var(--ear-verde-light);
}

/* =====================
   EAR TYPO SYSTEM
===================== */

:root {
  --ear-verde: #95c11f;
  --ear-bordo: #660618;
  --ear-text: #16161d;
}

/* kicker */
.ear-kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  color: var(--ear-verde);
}

/* títulos */
.ear-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

/* texto */
.ear-text {
  font-size: 18px;
  line-height: 1.6;
}

/* =====================
   LAYOUT
===================== */

.ear-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ear-section {
  padding: 80px 0;
}

/* =====================
   BOTONES
===================== */

.ear-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

/* PRIMARY (verde marca nueva) */

.ear-btn-primary {
  background: var(--ear-verde);
  color: var(--ear-white);
  transition: all 0.3s ease;
}

/* HOVER */
.ear-btn-primary:hover {
  background: var(--ear-verde-light);
  color: var(--ear-white); 
}

/* SECONDARY (bordó principal) */

.ear-btn-secondary {
  background: var(--ear-bordo); /* bordo */
  color: #ffffff;
}

.ear-btn-secondary:hover {
  background: var(--ear-bordo-light);
  color: #ffffff;
}

//* =========================
HEADER BASE
========================= */

.ear-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent !important;
}

/* NAV */
.ear-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}


/* LOGO */
.ear-logo img {
  height: auto; 
}

.ear-header-cta {
  background: none !important; /* elimina el bloque verde */
}


/* MENU DESKTOP */
.ear-nav-menu {
  display: none;
}

.ear-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.ear-menu a {
  text-decoration: none;
  color: inherit;
}

/* CTA */
.ear-cta {
  display: none;
}

/* =========================
HAMBURGER
========================= */

.ear-toggle {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.ear-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
}

/* =========================
MOBILE MENU (SIN ROMPER DISEÑO)
========================= */

@media (max-width: 1023px){

  /* mostramos hamburguesa */
  .ear-toggle {
    display: flex;
  }

  /* ocultamos menú por defecto */
  .ear-nav-menu {
    display: none;
    width: 100%;
  }

  /* cuando está activo */
  .ear-nav-menu.active {
    display: block;
  }

  /* menú en columna */
  .ear-menu {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

}


/* =========================
DESKTOP
========================= */

@media (min-width: 1024px){

  .ear-toggle {
    display: none;
  }

  .ear-nav-menu {
    display: block;
    position: static;
    max-height: none;
  }

  .ear-cta {
    display: block;
  }

}


/* =====================
   HERO
===================== */

/* HERO WRAPPER */

.ear-hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* TEXTO */

.ear-hero__content {
  max-width: 600px;
}

/* VISUAL */

.ear-hero__visual {
  position: relative;
  min-height: 520px;
}

@media (max-width: 768px) {
  .ear-hero__wrapper {
    grid-template-columns: 1fr;
  }

  .ear-hero__visual {
    margin-top: 40px;
  }
}

.ear-hero {
  background: var(--ear-bordo);
  color: white;
  padding: 120px 0;
}

.ear-hero__content {
  max-width: 600px;
}

.ear-hero__logos {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.ear-hero__logos img {
  height: 74px; /* antes 50px */
  width: auto;
  object-fit: contain;
}

.ear-hero__title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}

.ear-hero__text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 35px;
}

.ear-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* =====================
   CTA BROCHURE
===================== */

.ear-cta {
  background: #bba86b; /* ese beige */
  padding: 40px 0;
}

.ear-cta__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ear-cta__title {
  color: #fff;
  font-size: 22px;
}

/* CTA BORDEO */

.ear-cta--bordo {
  background: var(--ear-bordo);
}

.ear-cta--bordo .ear-cta__title {
  color: #fff;
}

/* =====================
   COUNTDOWN
===================== */

.ear-countdown {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background: var(--ear-bordo);
  background-image: url("images/finales/1920-890-trama.png");
  background-size: cover;
  background-position: center;
}

/* overlay mejor calibrado */

.ear-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(102, 6, 24, 0.65); /* un poco más fuerte */
}

.ear-countdown > * {
  position: relative;
  z-index: 2;
}

.ear-countdown__title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 60px;
}

.ear-countdown__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.ear-countdown__item {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-weight: 700;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ear-countdown__item span {
  font-size: 34px;
  color: var(--ear-bordo);
}

.ear-countdown__item small {
  color: #666;
}

/* =====================
   MANIFIESTO
===================== */

.ear-manifiesto {
  position: relative;
  padding: 120px 0;
  color: #fff;

  background-image: url("images/finales/1920-890-foto.jpg");
  background-size: cover;
  background-position: center;
}

/* OVERLAY BORDEO */

.ear-manifiesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(102, 6, 24, 0.69); /* bordó con opacidad */
}

/* CONTENIDO */

.ear-manifiesto__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

/* HEADER */

.ear-manifiesto__kicker {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.ear-manifiesto__title {
  font-size: 42px;
  margin-bottom: 40px;
  color: #fff;
}

/* GRID TEXTO */

.ear-manifiesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* CTA */

.ear-manifiesto__cta {
  margin-top: 20px;
}

/* =====================
   LUGAR
===================== */

.ear-lugar {
  position: relative;
  padding: 160px 0;

  background-image: url("images/finales/MendozaCiudad.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* overlay igual al manifiesto */

.ear-lugar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(102, 6, 24, 0.69);
}

/* asegurar contenido arriba */

.ear-lugar > * {
  position: relative;
  z-index: 2;
}

/* layout */

.ear-lugar__content {
  max-width: 1200px;
  margin: 0 auto;
}

.ear-lugar__text {
  max-width: 720px;
  color: #fff;
}

/* tipografía aplicada */

.ear-lugar .ear-kicker {
  color: #fff;
  opacity: 0.7;
}

.ear-lugar .ear-title {
  color: #fff;
}

.ear-lugar .ear-text {
  color: #f1f1f1; 
}

/* mobile */

@media (max-width: 768px) {
  .ear-lugar {
    padding: 100px 0;
    background-attachment: scroll;
  }

  .ear-lugar__text {
    text-align: center;
    margin: 0 auto;
  }
}

/* =====================
   HOTEL
===================== */

.ear-hotel {
  background: #f5f5f5;
  padding: 120px 0;
}

.ear-hotel__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* texto */

.ear-hotel .ear-kicker {
  color: var(--ear-verde);
}

.ear-hotel .ear-title {
  color: var(--ear-bordo);
  margin-bottom: 10px;
}

.ear-hotel__address {
  color: #666;
}

/* imagen */

.ear-hotel__media img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* mobile */

@media (max-width: 768px) {
  .ear-hotel__wrapper {
    grid-template-columns: 1fr;
  }

  .ear-hotel__content {
    text-align: center;
  }
}

/* =====================
   GALERÍA EAR
===================== */

.ear-galeria {
  background: var(--ear-bordo);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* textura */

.ear-galeria::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/finales/1920-890-paper.png');
  opacity: 0.05;
  pointer-events: none;
}

/* header */

.ear-galeria__header {
  margin-bottom: 40px;
}

.ear-galeria .ear-kicker {
  color: #fff;
  opacity: 0.7;
  text-transform: uppercase;
}

.ear-galeria .ear-title {
  color: #fff;
}

/* carousel */

.ear-galeria__carousel {
  margin-bottom: 40px;
}

/* item */

.ear-gallery-item {
  position: relative;
  overflow: hidden;
}

.ear-gallery-item img {
  width: 100%;
  display: block;
}

/* overlay */

.ear-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(102, 6, 24, 0.6);
  opacity: 0;
  transition: 0.3s;
}

.ear-gallery-item:hover::before {
  opacity: 1;
}

/* icon */

.ear-gallery-popup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ear-gallery-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  color: var(--ear-bordo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}

.ear-gallery-item:hover .ear-gallery-icon {
  opacity: 1;
}

/* footer */

.ear-galeria__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ear-galeria .ear-text {
  color: #eee;
}

.ear-btn-secondary {
  background: #c5d08a;
  color: #2e4a1f;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* mobile */

@media (max-width: 768px) {
  .ear-galeria__footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* =====================
DISERTANTES
===================== */

.ear-team-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 20px;
}

/* IMAGEN */
.ear-team-img {
  position: relative;
}

.ear-team-img img {
  width: 100%;
  display: block;
}

/* BLOQUE footer  */
.ear-normal-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: #7a1e1e;
  text-align: center;
  transition: 0.3s ease;
  z-index: 2;
}

.ear-normal-text .ear-team-name {
  color: #fff;
  font-size: 18px;
  margin: 0;
  text-transform: uppercase;
}

.ear-normal-text .ear-subtitle {
  color: #fff;
  font-size: 14px;
}

/* OVERLAY */
.ear-team-content {
  position: absolute;
  inset: 0;
  padding: 40px 30px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3; /* CLAVE */
}

.ear-team-content:before {
  content: '';
  position: absolute;
  inset: 0;
  background: #7a1e1e;
  z-index: -1;
}

/* TEXTO OVERLAY */
.ear-team-details {
  background: #7a1e1e;
  color: #fff;
}

.ear-team-details .ear-team-name {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ear-team-details .ear-position {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

/* HOVER CORREGIDO (CLAVE) */
.ear-team-item:hover .ear-team-content {
  opacity: 1;
  visibility: visible;
}

.ear-team-item:hover .ear-normal-text {
  opacity: 0;
  visibility: hidden;
}

/* HEADER (FIX TIPOGRAFICO) */

.ear-sec-title .ear-kicker {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #7a1e1e;
}

.ear-sec-title .ear-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  color: #7a1e1e; 
}

/* NAV FLECHAS */

.ear-team-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 40px;
}

.ear-team-prev,
.ear-team-next {
  background: none;
  border: none;
  font-size: 28px;
  color: #7a7a7a;
  cursor: pointer;
  transition: 0.2s ease;
}

.ear-team-prev:hover,
.ear-team-next:hover {
  color: #7a1e1e;
}

/* MOBILE */

@media (max-width: 768px) {
  .ear-sec-title .ear-title {
    font-size: 32px;
  }
}

/* =====================
   ABOUT / LO QUE FUE
===================== */

.ear-about {
  position: relative;
  padding: 100px 0;

  background-color: #f5f5f5;
  background-image: url("images/finales/1920-890-paper.png");
  background-size: 800px; 
  background-position: center;
}
.ear-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.50);
}

.ear-about > * {
  position: relative;
  z-index: 2;
}

.ear-about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* TEXTO */

.ear-about__kicker {
  color: var(--ear-verde);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.ear-about__title {
  font-size: 44px;
  line-height: 1.2;
  color: var(--ear-bordo);
  margin-bottom: 20px;
}

.ear-about__text {
  font-size: 18px;
  line-height: 1.6;
}

/* VIDEO */

.ear-video {
  position: relative;
}

.ear-video img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* PLAY BUTTON */

.ear-video__play {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--ear-verde);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ear-video__play::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 22px;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
@media (max-width: 768px) {

  .ear-about__wrapper {
    grid-template-columns: 1fr;
  }
}
/* =====================
   SPOTIFY
===================== */

.ear-spotify {
  background: #f5f5f5;
  padding: 100px 0;
  text-align: center;
}

.ear-spotify__title {
  font-size: 34px;
  color: var(--ear-bordo);
  margin-bottom: 10px;
}

.ear-spotify__text {
  margin-bottom: 30px;
  color: #666;
}

.ear-spotify__embed {
  max-width: 640px;
  margin: 0 auto;
}

/* =========================
   SPONSORS
========================= */

.ear-sponsors {
  padding: 100px 0;
}

/* separación título principal */
.ear-sec-title {
  margin-bottom: 80px;
}

/* subtítulos (Main, Premium, etc) */
.ear-sponsors-subtitle {
  font-size: 20px;
  color: #2e401c;
  margin-bottom: 30px;
  font-style: italic;
}

/* separación entre bloques */
.ear-sponsors-group {
  margin-bottom: 70px;
}

/* grid base */
.ear-sponsors-grid {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 40px 60px;
}

/* niveles */
.level-1 {
  grid-template-columns: repeat(3, 1fr);
}

.level-2 {
  grid-template-columns: repeat(4, 1fr);
}

.level-3 {
  grid-template-columns: repeat(4, 1fr);
}

.level-4 {
  grid-template-columns: repeat(6, 1fr);
}

/* tamaños de logos - AJUSTE FINAL */
.level-1 img {
  max-height: 130px;
}

.level-2 img {
  max-height: 92px;
}

.level-3 img {
  max-height: 75px;
}

.level-4 img {
  max-height: 60px;
}

/* comportamiento general */
.ear-sponsors-grid img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s ease;
}

.ear-sponsors-grid img:hover {
  transform: scale(1.05);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .level-1 {
    grid-template-columns: repeat(2, 1fr);
  }

  .level-2,
  .level-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .level-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .ear-sec-title {
    margin-bottom: 50px;
  }

  .ear-sponsors-group {
    margin-bottom: 50px;
  }

}


/* =========================
   CTA CONTACTO
========================= */

.ear-cta {
  padding: 80px 0;
  text-align: center;
}

.ear-cta--contacto {
  background: #7a1e1e; /* bordó */
  color: #fff;
}

.ear-cta-text {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}


.ear-cta-text a {
  color: #fff;
  text-decoration: underline;
  transition: 0.3s ease;
}

.ear-cta-text a:hover {
  opacity: 0.8;
}

/* MOBILE */

@media (max-width: 768px) {
  .ear-cta {
    padding: 50px 20px;
  }

  .ear-cta-text {
    font-size: 20px;
  }
}

/* =========================
   NOVEDADES (NOTA PRINCIPAL)
========================= */

.ear-about {
  padding: 100px 0;
}

.ear-about-des {
  margin: 25px 0 35px;
}

.ear-about-des p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* imagen */
.ear-nota-img img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* botón (usa el sistema existente) */
.ear-btn {
  display: inline-block;
  background: #a8b37a;
  color: #2e401c;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.ear-btn:hover {
  background: #7a1e1e;
  color: #fff;
}

/* spacing mobile */
@media (max-width: 768px) {
  .ear-about {
    padding: 60px 0;
  }

  .pt-45 {
    padding-top: 30px;
  }
}

/* =========================
   NOTAS (BLOG)
========================= */

.ear-blog {
  padding: 100px 0;
}

/* card */
.ear-blog-item {
  background: var(--ear-bordo);
  border-radius: 16px;
  overflow: hidden;
 transition: none;
;
} 

/* imagen */
.ear-blog-img img {
  width: 100%;
  display: block;
}

/* contenido */
.ear-blog-content {
  padding: 20px;
}

/* fecha */
.ear-blog-date {
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 500;
}

/* título */
.ear-blog-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.ear-blog-title a {
  color: #fff;
  text-decoration: none;
}

/* texto */
.ear-blog-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 15px;
}

/* leer más */
.ear-readmore {
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.ear-readmore:hover {
  text-decoration: underline;
}

.ear-blog-item {
  transition: none;
}

/* MOBILE */

@media (max-width: 768px) {
  .ear-blog {
    padding: 60px 0;
  }
}

/* =====================
   SCROLL TOP BUTTON
===================== */

.ear-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: #660618;
  color: #fff;
  border-radius: 9px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  cursor: pointer;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.ear-scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.ear-scroll-top:hover {
  transform: translateY(-3px);
}


/* =====================
   FOOTER
===================== */

.ear-footer {
  background: var(--ear-bordo);
  color: #fff;
  padding: 80px 0 40px;
}

/* LOGO */

.ear-footer__logo {
  text-align: center;
  margin-bottom: 40px;
}

.ear-footer__logo img {
  height: 50px;
}

/* FOOTER TITLES */

.ear-footer__col h4 {
  color: var(--ear-verde-light);
}

.ear-footer__col a {
  color: #fff;
  text-decoration: none;
}

.ear-footer__col a:hover {
  color: var(--ear-verde-light);
}

/* GRID */

.ear-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.ear-footer__col h4 {
  margin-bottom: 15px;
}

.ear-footer__col p {
  line-height: 1.6;
}

/* BOTTOM */

.ear-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

.ear-footer__social {
  display: flex;
  gap: 15px;
}

.ear-footer__social a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.ear-footer__social a:hover {
  color: var(--ear-verde-light);
}

@media (max-width: 768px) {

  .ear-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ear-footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

}

/* =====================
   LOGIN / CONTENEDOR GENERAL
===================== */

.ear-login {
  background-color: #660618; /* bordo */
  background-image: url("images/finales/1920-890-trama.png");
  background-repeat: repeat;
  padding: 100px 0;
}

/* =====================
   LOGIN / CENTRADO
===================== */

.ear-login .container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGIN / FIX TEMPLATE  */

.ear-login .contact-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.ear-login .margin {
  padding: 0;
}

.ear-login .form-button {
  background: transparent;
  padding: 0;
}

/*    LOGIN / CARD  */

.ear-login .contact-bg {
  background: #efefef; /* gris claro */
  border-radius: 24px;
  padding: 60px 40px 50px; /* más aire arriba */
}

/*    LOGIN / TITULO */

.ear-login .contact-title {
  color: #660618; /* bordo */
  font-weight: 700;
  margin-bottom: 35px;
}

/*    LOGIN / INPUTS  */

.ear-login .form-field {
  margin-bottom: 18px;
}

.ear-login .form-field input {
  width: 100%;
  height: 52px;
  border-radius: 30px;
  padding: 0 20px;
  border: 1px solid #3c3c3a; /* gris oscuro */
  background: transparent;
  font-size: 14px;
}

.ear-login .form-field input:focus {
  outline: none;
  border-color: #660618; /* bordo */
}

/*    LOGIN / BOTON */

.ear-login .ear-btn {
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 40px;
  margin-top: 10px;
}

/*    LOGIN / LINK */

.ear-login .olvide {
  margin-top: 18px;
}

.ear-login .olvide a {
  color: #660618; /* bordo */
  font-size: 14px;
  transition: 0.3s;
  text-decoration: none;
}

.ear-login .olvide a:hover {
  text-decoration: underline;
}

/* =====================
   EAR INSCRIPCION UI V5
===================== */

/* BACKGROUND (CLAVE) */
.ear-inscripcion {
  background-color: var(--ear-bordo);
  background-image: url("images/finales/1920-890-trama.png");
  background-repeat: repeat;
  padding: 100px 0;
}

/* TITULO */
.ear-heading {
  color: var(--ear-white);
  font-size: 32px;
}

/* CARD */
.rs-footer .contact-bg.ear-card {
  background: var(--ear-gris);
  border-radius: 20px;
  padding: 50px 40px;
}

/* LIMPIEZA */
.rs-footer .contact-form {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.rs-footer .contact-bg .margin {
  padding: 0 30px;
}

/* TITULOS */
.rs-footer .contact-form .contact-title {
  font-size: 22px;
  color: var(--ear-text);
  margin-bottom: 20px;
}

/* CAMPOS */
.rs-footer .contact-form .form-field {
  margin-bottom: 16px;
}

.rs-footer .contact-form .form-field input,
.rs-footer .contact-form .form-field select {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: 30px;
  border: 1px solid var(--ear-gris-oscuro);
  background: transparent;
  font-size: 14px;
  color: var(--ear-text);
}

/* SELECT ARROW FIX */
.rs-footer .contact-form .form-field select {
  padding-right: 45px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%233C3C3A' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

/* FOCUS */
.rs-footer .contact-form .form-field input:focus,
.rs-footer .contact-form .form-field select:focus {
  border: 1px solid var(--ear-verde);
  outline: none;
}

/* BOTON */
.readon {
  width: 100%;
  height: 52px;
  border-radius: 30px;
  background: var(--ear-verde);
  color: var(--ear-white);
  border: none;
  font-size: 14px;
}

.readon:hover {
  background: var(--ear-verde-light);
  color: var(--ear-white);
}

/* BLOQUE VERDE */
.aviso {
  background: var(--ear-verde);
  color: var(--ear-white);
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
  display: inline-block;
  max-width: 260px;
}

.aviso a {
  color: var(--ear-white);
  text-decoration: underline;
}

/* TEXTO */
.rs-footer .contact-form .form-field {
  font-size: 13px;
  color: var(--ear-text);
  line-height: 1.5;
}

/* MODAL */
.modal-content {
  border-radius: 20px;
  background: var(--ear-gris);
  text-align: center;
  padding: 20px;
}

.modal-header {
  font-size: 16px;
  color: var(--ear-text);
  border: none;
}

.modal-body {
  font-size: 13px;
  color: var(--ear-text);
}

.modal-footer {
  border: none;
}

.primary-btn {
  background: var(--ear-verde);
  border-radius: 30px;
  height: 45px;
  padding: 0 25px;
  color: var(--ear-white);
  border: none;
}

/* =====================
   EAR RADIO FIX V3 (ANTI OVAL)
===================== */

.ear-radio-group {
  display: flex;
  gap: 30px;
  align-items: center;
}

.ear-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ear-text);
  cursor: pointer;
}

/* INPUT REAL OCULTO */
.ear-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* CÍRCULO CUSTOM (ESTABLE) */
.ear-radio span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--ear-gris-oscuro);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* PUNTO INTERNO */
.ear-radio input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--ear-verde);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 9px;
  top: 9px;
}

/* BORDE ACTIVO */
.ear-radio input[type="radio"]:checked + span::before {
  border-color: var(--ear-verde);
}

/* HOVER */
.ear-radio:hover span::before {
  border-color: var(--ear-verde-light);
}

/* NECESARIO PARA POSICIONAR EL DOT */
.ear-radio span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* AVISO MÁS ANCHO */
.ear-aviso {
  max-width: 100%;
  line-height: 1.4;
}

/* AIRE RADIOS */
.ear-radio-block {
  margin-top: 15px;
  margin-bottom: 25px;
}

.ear-radio-title {
  margin-bottom: 14px;
}

/* BOTÓN DERECHA */
.ear-submit {
  margin-top: 25px;
}

/* MEJOR LECTURA GENERAL */
.ear-card .contact-form {
  display: flex;
  flex-direction: column;
}

/* =====================
   EAR USUARIO UI
===================== */

.ear-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
  align-items: stretch;
}

/* 🔑 BASE EXACTA COMPARTIDA */
.ear-actions .ear-btn-primary,
.ear-actions .ear-btn-secondary {
  width: 100%;
  height: 56px;               
  line-height: 56px;           
  padding: 0 28px;           
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  display: block;
  box-sizing: border-box;
}

/* PRIMARIO */
.ear-btn-primary {
  background: var(--ear-verde);
  color: var(--ear-white);
  border: 2px solid var(--ear-verde);
  transition: all 0.3s ease;
}

.ear-btn-primary:hover {
  background: var(--ear-verde-light);
  border-color: var(--ear-verde-light);
}

/* SECUNDARIO */
.ear-btn-secondary {
  border: 2px solid var(--ear-bordo);
  color: var(--ear-bordo);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ear-btn-secondary:hover {
  background: var(--ear-bordo);
  color: var(--ear-white);
}