/*
 * Login CSS
 * Reorganizado para mejor mantenibilidad
 */

/* ========================================
   BASE STYLES
   ======================================== */

body {
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   FONT FACES
   ======================================== */

@font-face {
  font-family: "SofiaProBold";
  font-weight: bold;
  src: url("../fonts/SofiaProBold.otf");
}
@font-face {
  font-family: "SofiaProMedium";
  font-weight: normal;
  src: url("../fonts/SofiaProMedium.otf");
}
@font-face {
  font-family: "SofiaProLight";
  font-weight: normal;
  src: url("../fonts/SofiaProMedium.otf");
}
@font-face {
  font-family: "SofiaProLight";
  font-weight: normal;
  src: url("../fonts/SofiaProMedium.otf");
}

/* ========================================
   DISEÑO NUEVO - LOGIN INDEX
   ======================================== */

.login-index .layout-main {
  width: 100%;
  margin: 0;
  padding: 0;
}

.login-index .layout-content {
  max-width: 1304px;
  margin: 0 auto;
  padding: 0 36px;
  width: 100%;
  box-sizing: border-box;
}

/* Navbar */
.login-index .navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
}

.login-index .navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  width: 100%;
  box-sizing: border-box;
}

.login-index .navbar-logo {
  height: 44px;
  width: 62px;
  flex-shrink: 0;
}

.login-index .navbar-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.login-index .navbar-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-index .navbar-link {
  padding: 8px 16px;
  font-family: "Sofia Pro", "SofiaProMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #141414;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.login-index .navbar-link:hover {
  opacity: 0.7;
}

.login-index .navbar-cta {
  flex-shrink: 0;
}

.login-index .btn-empresas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgb(170, 71, 174) 0%, rgb(170, 71, 174) 100%);
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(20, 20, 20, 0.08);
  font-family: "Sofia Pro", "SofiaProMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.login-index .btn-empresas:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px 0px rgba(20, 20, 20, 0.12);
}

.login-index .navbar-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}

.login-index .navbar-hamburger img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile Menu */
.login-index .mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: white;
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 999;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(20, 20, 20, 0.08);
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}

.login-index .mobile-menu.active {
  display: flex;
}

.login-index .mobile-menu-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  box-sizing: border-box;
}

.login-index .mobile-menu-close svg {
  width: 24px;
  height: 24px;
  display: block;
}

.login-index .mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-index .mobile-menu-link {
  padding: 8px 16px;
  font-family: "Sofia Pro", "SofiaProMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #141414;
  text-decoration: none;
  text-align: left;
  transition: opacity 0.2s;
}

.login-index .mobile-menu-link:hover {
  opacity: 0.7;
}

.login-index .mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgb(170, 71, 174) 0%, rgb(170, 71, 174) 100%);
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(20, 20, 20, 0.08);
  font-family: "Sofia Pro", "SofiaProMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.login-index .mobile-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px 0px rgba(20, 20, 20, 0.12);
}

/* Hero Section */
.login-index .hero-section {
  background: white;
}

.login-index .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  box-sizing: border-box;
}

.login-index .hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 645px;
}

.login-index .hero-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-index .hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #aa47ae;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin: 0;
  font-feature-settings: "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 64px;
  color: #141414;
  letter-spacing: -0.56px;
  margin: 0;
  font-feature-settings: "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .text-purple {
  color: #aa47ae;
}

.login-index .hero-description {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #525252;
  margin: 0;
  font-feature-settings: "ss02";
  margin-bottom: 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .hero-download {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 499px;
}

.login-index .download-label {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #525252;
  margin: 0;
  font-feature-settings: "ss02";
}

.login-index .download-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.login-index .store-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 56px;
  background: #000000;
  border: 1px solid #a7a6a6;
  border-radius: 8px;
  padding: 0 16px;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.login-index .store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-index .store-button img {
  height: auto;
  max-height: 40px;
}

.login-index .hero-image {
  flex: 1;
  max-width: 574px;
  position: relative;
}

/* Stats Section */
.login-index .stats-section {
  background: white;
  padding: 64px 0;
}

.login-index .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: center;
  justify-items: center;
}

.login-index .stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.login-index .stat-icon {
  width: 116px;
  height: 116px;
  background: linear-gradient(135deg, #aa47ae 0%, #aa47ae 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-index .stat-icon i {
  font-size: 48px;
  color: #ffffff;
}

.login-index .stat-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.login-index .stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 52px;
  color: #141414;
  letter-spacing: -0.4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #525252;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive stats */

/* Partners Section */
.login-index .partners-section {
  background: #1a1a1a;
  padding: 64px 0;
}

.login-index .partners-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 60px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .partners-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
}

.login-index .carousel-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.login-index .carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.login-index .carousel-arrow i {
  font-size: 16px;
}

.login-index .partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 104px);
  gap: 48px;
  flex: 1;
  align-items: center;
  justify-items: center;
}

.login-index .partner-logo {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.login-index .partner-logo.active {
  display: flex;
  opacity: 1;
}

.login-index .partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Responsive partners */

/* Benefits Section */
.login-index .benefits-section {
  background: white;
  padding: 104px 0;
}

.login-index .benefits-header {
  max-width: 709px;
  margin-bottom: 68px;
}

.login-index .benefits-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #aa47ae;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin: 0 0 8px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .benefits-title {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 52px;
  color: #141414;
  letter-spacing: -0.56px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.login-index .benefit-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-index .benefit-visual {
  background: linear-gradient(135deg, #f4e5f5 0%, #e8d5ea 100%);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.login-index .benefit-decoration {
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.6;
}

.login-index .benefit-decoration-dots {
  top: 40px;
  right: 40px;
  left: auto;
}

.login-index .benefit-decoration-arrow-right {
  bottom: 20px;
  right: 20px;
  top: auto;
  left: auto;
}

.login-index .benefit-phone {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;

  object-fit: contain;
}

.login-index .benefit-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-index .benefit-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #141414;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .benefit-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #525252;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive benefits */

/* LaifPass Section */
.login-index .laifpass-section {
  background: #1a1a1a;
  padding: 64px 0;
}

.login-index .laifpass-content {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 96px;
}

.login-index .laifpass-text {
  flex: 1;
  max-width: 614px;
}

.login-index .laifpass-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #f4c542;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin: 0 0 8px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .laifpass-title {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  color: #ffffff;

  margin: 0 0 40px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .text-underline-yellow {
  position: relative;
  display: inline-block;
  color: #ffc935;
}

/* .login-index .text-underline-yellow::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 3px;
	background: #f4c542;
	border-radius: 2px;
} */

.login-index .laifpass-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.login-index .laifpass-benefits li {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #ffffff;
  padding-left: 24px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .laifpass-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #f4c542;
  border-radius: 50%;
}

.login-index .btn-laifpass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 44px;
  background: #ffc935;
  border-radius: 4px;
  box-shadow: 0px 4px 16px 0px rgba(244, 197, 66, 0.3);
  font-family: "Sofia Pro", "SofiaProMedium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #141414;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.login-index .btn-laifpass:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px 0px rgba(244, 197, 66, 0.4);
}

.login-index .laifpass-visual {
  flex: 1;
  max-width: 457px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -120px;
}

.login-index .laifpass-circle {
  position: relative;
  width: 418px;
  height: 418px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #f4c542;
}

.login-index .laifpass-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-index .laifpass-icon {
  position: absolute;
  width: 74px;
  height: 74px;
  background: #f4c542;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.login-index .laifpass-icon i {
  font-size: 32px;
  color: #1a1a1a;
}

.login-index .laifpass-icon-discount {
  top: 16px;
  right: -8px;
}

.login-index .laifpass-icon-food {
  bottom: 60px;
  right: -8px;
}

.login-index .laifpass-icon-gym {
  top: 160px;
  left: -8px;
}

/* Responsive LaifPass */

/* Testimonials Section */
.login-index .testimonials-section {
  background: #f5f5f5;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.login-index .testimonials-section .testimonials__bg-shape {
  display: block;
  position: absolute;
  left: -31px;
  top: 0;
}

.login-index .testimonials-section::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 100px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(170, 71, 174, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.login-index .testimonials-section::after {
  content: "";
  position: absolute;
  bottom: 100px;
  right: 150px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(170, 71, 174, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.login-index .testimonials-header {
  margin-bottom: 180px;
  z-index: 2;
  position: relative;
}

.login-index .testimonials-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #aa47ae;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin: 0 0 8px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .testimonials-title {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  color: #141414;
  letter-spacing: -0.44px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.login-index .testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  min-height: 330px;
  justify-content: center;
}

.login-index .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.login-index .testimonial-avatar {
  width: 128px;
  height: 128px;
  background: linear-gradient(135deg, #f4e5f5 0%, #e8d5ea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: absolute;
  top: -65px;
  margin-bottom: -48px;
}

.login-index .testimonial-avatar i {
  font-size: 48px;
  color: #aa47ae;
}

.login-index .testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.login-index .testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.login-index .testimonial-name {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #141414;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .testimonial-location {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #525252;
  margin: 0 0 12px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .testimonial-quote {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #141414;
  margin: 0;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive testimonials */

/* Video Section */
.login-index .video-section {
  background: white;
  padding: 104px 0;
}

.login-index .video-header {
  margin-bottom: 64px;
}

.login-index .video-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #aa47ae;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin: 0 0 8px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .video-title {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  color: #141414;
  letter-spacing: -0.44px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.login-index .video-player {
  width: 100%;
  max-width: 1024px;
  height: 524px;
  background: #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.login-index .video-player:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.login-index .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-index .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.login-index .video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.login-index .video-play-button i {
  font-size: 32px;
  color: #aa47ae;
  margin-left: 6px;
}

.login-index .video-indicators {
  display: flex;
  gap: 16px;
  align-items: center;
}

.login-index .video-indicator {
  width: 24px;
  height: 24px;
  background: #e8d5ea;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.login-index .video-indicator.active {
  background: #aa47ae;
}

.login-index .video-indicator:hover {
  background: #c77bcb;
}

/* Responsive video */

/* FAQ Section */
.login-index .faq-section {
  padding: 104px 0 104px 0;
  background: #ffffff;
}

.login-index .faq-container {
  display: flex;
  gap: 24px;
  align-items: start;
}

.login-index .faq-content {
  display: flex;
  flex-direction: column;
  gap: 46px;
  max-width: 709px;
  flex: 1;
}

.login-index .faq-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-index .faq-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #aa47ae;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .faq-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 52px;
  letter-spacing: -0.44px;
  color: #141414;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .faq-title .highlight {
  color: #aa47ae;
}

.login-index .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 604px;
}

.login-index .faq-item {
  cursor: pointer;
  transition: all 0.3s;
}

.login-index .faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-index .faq-item:hover .faq-question {
  color: #aa47ae;
}

.login-index .faq-item.active .faq-question {
  color: #aa47ae;
}

.login-index .faq-question {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #141414;
  margin: 0;
  max-width: 395px;
  transition: color 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0;
}

.login-index .faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

.login-index .faq-answer p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin: 0;
  max-width: 520px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-index .faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.login-index .faq-icon i {
  font-size: 16px;
  color: #141414;
  transition: transform 0.3s;
}

.login-index .faq-item:hover .faq-icon i {
  transform: translateY(4px);
}

.login-index .faq-item.active .faq-icon i {
  transform: rotate(180deg);
  color: #aa47ae;
}

.login-index .faq-divider {
  height: 1px;
  width: 600px;
  background: #e5e5e5;
}

.login-index .faq-image {
  position: relative;
  background: #f7d9f7;
  border-radius: 8px;
  width: 499px;
  height: 502px;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: 180px;
}

.login-index .faq-person {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: auto;
  object-fit: cover;
}

.login-index .faq-decoration {
  position: absolute;
  width: 80px;
  height: 80px;
  background: url("/img/login/decoration-dots.svg") no-repeat center;
  background-size: contain;
  opacity: 0.5;
}

.login-index .faq-decoration-left {
  left: -20px;
  top: 20px;
  transform: rotate(15deg);
}

.login-index .faq-decoration-right {
  right: -10px;
  bottom: 100px;
  transform: rotate(-75deg) scaleY(-1);
}

/* Responsive FAQ */

/* App CTA Section */
.login-index .app-cta-section {
  width: 100%;
  padding: 64px 0;
  background: #141414;
  margin-top: 120px;
}

.login-index .app-cta-container {
  max-width: 1022px;
  margin: -190px auto 0px;
  background: #c962cc;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  overflow: hidden;
}

.login-index .app-cta-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.login-index .app-cta-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: #141414;
  text-transform: uppercase;
  letter-spacing: 0.64px;
  margin: 0;
  font-feature-settings: "ss02";
}

.login-index .app-cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  color: #ffffff;
  letter-spacing: -0.44px;
  margin: 0;
  font-feature-settings: "ss02";
}

.login-index .app-cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.login-index .app-store-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 56px;
  background: #000000;
  border: 1px solid #a7a6a6;
  border-radius: 8px;
  padding: 0 16px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}

.login-index .app-store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.login-index .app-store-button img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive App CTA */

.login-index .hero-image-background {
  position: absolute;
  top: 71px;
  left: 75px;
  width: 499px;
  height: 655px;
  background: #f5f5f5;
  border-radius: 8px;
}

/* Footer Section */
.login-index .footer-section {
  width: 100%;
  padding: 16px 0 32px 0;
  background: #141414;
}

.login-index .footer-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.login-index .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.login-index .footer-logo {
  width: 62px;
  height: 44px;
  flex-shrink: 0;
}

.login-index .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login-index .footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.login-index .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #141414;
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  transition: background 0.2s;
}

.login-index .footer-line {
  height: 1px;
  width: 100%;
  background: #333333;
}

.login-index .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #ffffff;
}

.login-index .copyright {
  margin: 0;
  font-feature-settings: "ss02";
}

.login-index .footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.login-index .footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-feature-settings: "ss02";
}

.login-index .footer-links .separator {
  color: #ffffff;
}

/* Responsive Footer */

.login-index .hero-image-shapes {
  position: absolute;
  top: 71px;
  left: 0;
  width: 574px;
  height: 655px;
  overflow: hidden;
  border-radius: 8px;
}

.login-index .shape {
  position: absolute;
}

.login-index .shape-1 {
  top: -13px;
  left: -82px;
  width: 443px;
  height: auto;
  transform: rotate(133.73deg) scaleY(-1);
}

.login-index .shape-2 {
  top: -22px;
  right: -47px;
  width: 180px;
  height: auto;
  transform: rotate(180deg);
}

.login-index .hero-image-phone {
  position: absolute;
  top: 0;
  left: 21px;
  width: 553px;
  height: 726px;
  overflow: hidden;
  border-radius: 8px;
}

.login-index .phone-image {
  width: 553px;
  height: 830px;
  object-fit: cover;
  transform: rotate(180deg) scaleY(-1);
}

.login-index .star {
  position: absolute;
  width: 54px;
  height: auto;
}

.login-index .star-1 {
  top: 486px;
  left: 50%;
  margin-left: -226px;
  transform: rotate(-30deg);
}

.login-index .star-2 {
  top: 26px;
  left: 50%;
  margin-left: 122px;
  transform: rotate(27.26deg);
}

/* ========================================
   RESPONSIVE - LOGIN INDEX
   ======================================== */

/* Tablet y Desktop pequeño (≤992px) */
@media (max-width: 992px) {
  /* Navbar */
  .login-index .navbar-content {
    padding: 0px;
  }

  .login-index .navbar-menu {
    display: none;
  }

  .login-index .navbar-cta {
    display: none;
  }

  .login-index .navbar-hamburger {
    display: block;
  }

  /* Hero Section */
  .login-index .hero-section {
    padding: 40px 0;
  }

  .login-index .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .login-index .hero-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .login-index .hero-title {
    font-size: 36px;
    line-height: 44px;
  }

  .login-index .hero-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .login-index .download-label {
    font-size: 16px;
    line-height: 24px;
  }

  .login-index .hero-image {
    flex: 1 1 100%;
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 574 / 726;
  }

  .login-index .hero-image-background,
  .login-index .hero-image-shapes,
  .login-index .hero-image-phone {
    width: 100%;
    height: 100%;
  }

  .login-index .hero-image-background {
    left: 13%;
  }

  .login-index .phone-image {
    width: 100%;
    height: auto;
  }

  /* Stats */
  .login-index .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Partners */
  .login-index .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .login-index .partners-carousel {
    gap: 24px;
  }

  .login-index .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  /* Benefits */
  .login-index .benefits-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .login-index .benefits-title {
    font-size: 40px;
    line-height: 44px;
  }

  /* LaifPass */
  .login-index .laifpass-content {
    flex-direction: column-reverse;
    gap: 36px;
  }

  .login-index .laifpass-text {
    max-width: 100%;
  }

  .login-index .laifpass-title {
    font-size: 40px;
    line-height: 44px;
  }

  .login-index .laifpass-circle {
    width: 320px;
    height: 320px;
  }

  .login-index .laifpass-icon {
    width: 64px;
    height: 64px;
  }

  .login-index .laifpass-icon i {
    font-size: 28px;
  }

  /* Testimonials */
  .login-index .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .login-index .testimonials-title {
    font-size: 36px;
    line-height: 40px;
  }

  .login-index .testimonial-card {
    padding: 40px 32px 32px 32px;
  }

  /* Video */
  .login-index .video-section {
    padding: 80px 0;
  }

  .login-index .video-title {
    font-size: 36px;
    line-height: 40px;
  }

  .login-index .video-player {
    height: 400px;
  }

  .login-index .video-play-button {
    width: 80px;
    height: 80px;
  }

  .login-index .video-play-button i {
    font-size: 28px;
  }

  /* FAQ */
  .login-index .faq-section {
    padding: 80px 0;
  }

  .login-index .faq-container {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .login-index .faq-content {
    max-width: 100%;
  }

  .login-index .faq-title {
    font-size: 36px;
    line-height: 44px;
  }

  .login-index .faq-list {
    max-width: 100%;
  }

  .login-index .faq-divider {
    width: 100%;
  }

  .login-index .faq-image {
    display: none;
  }

  /* App CTA */
  .login-index .app-cta-section {
    padding: 48px 0;
  }

  .login-index .app-cta-container {
    padding: 24px;
    gap: 24px;
  }

  .login-index .app-cta-title {
    font-size: 36px;
    line-height: 44px;
  }

  .login-index .app-cta-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  /* Footer */
  .login-index .footer-container {
    padding: 0;
  }

  .login-index .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .login-index .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .login-index .footer-links .separator {
    display: none;
  }

  /* Legacy */
  .escritorio {
    display: none;
  }

  .responsive {
    display: block;
  }

  header nav {
    padding: 20px 50px;
  }

  header nav .logo {
    width: 20%;
  }

  header nav .logo img {
    width: 50px;
  }

  header nav .anunciante {
    width: 50%;
    text-align: left;
    margin: auto 20px;
  }

  header .banner .banner-contenido {
    width: 80%;
    margin: inherit;
    padding: inherit;
  }

  header .banner .banner-contenido .titulo {
    width: 90%;
  }

  header .banner .contenido .banner-contenido .parrafo {
    width: 60%;
  }

  header .banner .contenido .banner-contenido .parrafo p {
    font-size: 16px;
    line-height: 22px;
  }

  header .banner .imagen-banner {
    height: 100%;
    object-fit: cover;
    object-position: right;
  }

  header .banner .banner-contenido .titulo h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .empieza {
    margin-top: -70px;
    padding: 20px 30px 100px 30px;
  }

  .empieza .contenido-interno .titulo {
    width: 100%;
  }

  .empieza .contenido-interno .titulo h2 {
    font-size: 28px;
    line-height: 40px;
  }

  .empieza .contenido-interno .imagen img {
    width: 100%;
  }

  .empieza .contenido-interno .parrafo {
    width: 100%;
  }

  .empieza .contenido-interno .parrafo p {
    font-size: 14px;
    line-height: 19px;
  }

  .video {
    padding: 0 30px 100px 30px;
  }

  .video .contenido .contenido-interno .titulo h2 {
    font-size: 38px;
    line-height: 67px;
    margin-top: 100px;
  }

  .video .contenido .contenido-interno .parrafo {
    width: 100%;
  }

  .video .contenido .contenido-interno .parrafo p {
    font-size: 14px;
    line-height: 30px;
  }

  .imagenes-uno,
  .imagenes-dos {
    display: none;
  }

  footer {
    padding-top: 30px;
  }

  footer .menu-footer ul {
    list-style: none;
    padding: 10px 0;
  }

  footer .menu-footer ul li {
    padding: 0 30px;
    width: 100%;
  }

  footer .redes ul {
    list-style: none;
    justify-content: left;
  }

  footer .redes ul li {
    padding: 20px 0px 0 30px;
    font-size: 25px;
  }

  footer .copy {
    border-top: 1px solid #e5e5e5;
    width: 90%;
    margin: auto;
  }

  footer .copy p {
    color: #fff;
  }
}

/* Tablet pequeño (≤768px) */
@media (max-width: 768px) {
  .login.register .card-register,
  .login.registered .card-register,
  .login.password .card-register,
  .login.advertiser .card-register {
    width: 100%;
  }
}

/* Móvil (≤576px) */
@media (max-width: 576px) {
  /* Stats */
  .login-index .stats-section {
    padding: 32px 0 64px 0;
  }

  .login-index .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .login-index .stat-icon {
    width: 88px;
    height: 88px;
    border-radius: 6px;
    padding: 6px;
  }

  .login-index .stat-icon img {
    width: 61px;
    height: auto;
  }

  .login-index .stat-number {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.28px;
  }

  .login-index .stat-label {
    font-size: 16px;
    line-height: 20px;
  }

  /* Partners */
  .login-index .partners-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 104px);
    gap: 24px;
  }

  .login-index .partners-carousel {
    gap: 16px;
  }

  .login-index .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .login-index .carousel-arrow i {
    font-size: 14px;
  }

  /* Benefits */
  .login-index .benefits-section {
    padding: 64px 0;
  }

  .login-index .benefits-title {
    font-size: 28px;
    line-height: 36px;
  }

  /* LaifPass */
  .login-index .laifpass-section {
    padding: 64px 0;
  }

  .login-index .laifpass-title {
    font-size: 32px;
    line-height: 36px;
  }

  .login-index .laifpass-benefits li {
    font-size: 16px;
    line-height: 24px;
  }

  .login-index .laifpass-circle {
    width: 280px;
    height: 280px;
  }

  .login-index .laifpass-icon {
    width: 56px;
    height: 56px;
  }

  .login-index .laifpass-icon i {
    font-size: 24px;
  }

  /* Testimonials */
  .login-index .testimonials-section {
    padding: 64px 0;
  }

  .login-index .testimonials-title {
    font-size: 28px;
    line-height: 32px;
  }

  .login-index .testimonial-avatar {
    width: 100px;
    height: 100px;
    top: -60px;
    margin-bottom: -28px;
  }

  .login-index .testimonial-avatar i {
    font-size: 36px;
  }

  .login-index .testimonial-name {
    font-size: 20px;
    line-height: 28px;
  }

  .login-index .testimonial-quote {
    font-size: 16px;
    line-height: 22px;
  }

  /* Video */
  .login-index .video-section {
    padding: 64px 0;
  }

  .login-index .video-title {
    font-size: 28px;
    line-height: 32px;
  }

  .login-index .video-player {
    height: 280px;
  }

  .login-index .video-play-button {
    width: 64px;
    height: 64px;
  }

  .login-index .video-play-button i {
    font-size: 24px;
  }

  .login-index .video-indicator {
    width: 16px;
    height: 16px;
  }

  .login-index .video-indicators {
    gap: 12px;
  }

  /* FAQ */
  .login-index .faq-section {
    padding: 0 0 64px 0;
  }

  .login-index .faq-content {
    gap: 32px;
  }

  .login-index .faq-title {
    font-size: 28px;
    line-height: 36px;
  }

  .login-index .faq-question {
    font-size: 18px;
    line-height: 24px;
    max-width: 280px;
  }

  .login-index .faq-icon {
    width: 40px;
    height: 40px;
  }

  .login-index .faq-icon i {
    font-size: 20px;
  }

  .login-index .faq-image {
    display: none;
  }

  /* App CTA */
  .login-index .app-cta-section {
    padding: 32px 0;
  }

  .login-index .app-cta-container {
    padding: 24px 16px;
    gap: 24px;
  }

  .login-index .app-cta-title {
    font-size: 28px;
    line-height: 36px;
  }

  .login-index .app-cta-subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .login-index .app-cta-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .login-index .app-store-button {
    width: 100%;
    max-width: 280px;
  }

  .login-index .layout-content {
    padding: 20px;
  }
  .login-index .benefits-header {
    margin-bottom: 32px;
  }
  .login-index .btn-laifpass {
    display: block;
    text-align: center;
  }

  .login-index .video-header {
    margin-bottom: 24px;
  }
}

/* ========================================
   LEGACY STYLES (OLD DESIGN)
   ======================================== */

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

.responsive {
  display: none;
}

header .banner {
  height: 890px;
}

header .banner {
  position: relative;
}

header .banner .imagen-banner {
  width: 100%;
  max-height: 1190px;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}

header nav .logo {
  width: 50%;
}

header nav .logo img {
  width: 90px;
  height: auto;
}

header nav .anunciante {
  width: 50%;
  text-align: right;
  margin: auto;
}

header nav .anunciante p {
  font-family: "SofiaProMedium";
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #2e2a2a;
}

header .banner .banner-contenido {
  width: 45%;
  margin-top: 80px;
  padding: 0 50px;
}

header .banner .banner-contenido .titulo h2 {
  font-family: "SofiaProMedium";
  font-weight: normal;
  font-style: normal;
  font-size: 48px;
  line-height: 60px;
}

header .banner .contenido .banner-contenido .parrafo p {
  font-family: "SofiaProMedium";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin-bottom: 40px;
}

.empieza {
  background: #0f0e0e;
  padding: 10px 0 130px 0;
}

.empieza .contenido {
  position: relative;
}

.empieza .imagenes-uno .imagen-uno,
.empieza .imagenes-uno .imagen-dos,
.empieza .imagenes-uno .imagen-tres,
.empieza .imagenes-dos .imagen-cuatro,
.empieza .imagenes-dos .imagen-cinco,
.empieza .imagenes-dos .imagen-seis {
  position: absolute;
}

.empieza .imagenes-uno .imagen-uno {
  top: 30px;
  left: 0px;
}

.empieza .imagenes-uno .imagen-dos {
  top: 530px;
  left: 0px;
}

.empieza .imagenes-uno .imagen-tres {
  top: 650px;
  left: 210px;
}

.empieza .imagenes-dos .imagen-cuatro {
  top: 60px;
  right: 0;
}

.empieza .imagenes-dos .imagen-cinco {
  top: 540px;
  right: 0;
}

.empieza .imagenes-dos .imagen-seis {
  top: 650px;
  right: 200px;
}

.empieza .contenido-interno {
  text-align: center;
}

.empieza .contenido-interno .titulo {
  width: 40%;
  margin: auto;
}

.empieza .contenido-interno .titulo h2 {
  font-family: "SofiaProBold";
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #fdf4f4;
}

.empieza .contenido-interno .imagen img {
  width: 45%;
}

.empieza .contenido-interno .parrafo {
  width: 30%;
  margin: auto;
}

.empieza .contenido-interno .parrafo p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  margin-top: 30px;
}

.video {
  padding-bottom: 100px;
}

.video .contenido .contenido-interno .titulo h2 {
  font-family: "SofiaProBold";
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  line-height: 67px;
  text-align: center;
  color: #0f0e0e;
  margin-bottom: 100px;
}

.video .contenido .contenido-interno .video-interno {
  text-align: center;
  margin-bottom: 60px;
}

.video .contenido .contenido-interno .parrafo {
  width: 44%;
  margin: auto;
}

.video .contenido .contenido-interno .parrafo p {
  font-family: "SofiaProMedium";
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  margin-bottom: 50px;
}

.video .contenido .contenido-interno .googlepay {
  text-align: center;
}

footer {
  background: #000;
  padding-bottom: 10px;
}

footer .menu-footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

footer .menu-footer ul li {
  padding: 30px 50px;
}

footer .menu-footer ul li a {
  font-family: "SofiaProLight";
  color: #fff !important;
  text-decoration: none;
}

footer .redes {
  padding-bottom: 20px;
}

footer .redes ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0 20px 0px;
  padding: 0;
}

footer .redes ul li {
  padding: 0 20px;
}

footer .redes ul li a {
  color: #fff !important;
}

footer .copy {
  border-top: 1px solid #e5e5e5;
}

footer .copy p {
  font-family: "SofiaProLight";
  text-align: center;
  color: #555;
  margin-bottom: 0;
  padding-bottom: 60px;
  padding-top: 20px;
}

/* ========================================
   LOGIN FORMS
   ======================================== */

.login.register body > div,
.login.registered body > div,
.login.password body > div,
.login.advertiser body > div {
  background-color: white;
}
.login.register .container-fluid > div,
.login.registered .container-fluid > div,
.login.password .container-fluid > div,
.login.advertiser .container-fluid > div,
.login.join .container-fluid > div {
  left: 0;
  top: 0;
}
.login.register footer,
.login.registered footer,
.login.password footer,
.login.advertiser footer,
.login.join footer {
  display: none;
}
.login.register .card,
.login.registered .card,
.login.password .card,
.login.advertiser .card {
  width: 360px;
}
.login.register .card-register,
.login.registered .card-register,
.login.password .card-register,
.login.advertiser .card-register {
  width: 520px;
  max-width: 100%;
}
.login.register .logo,
.login.registered .logo,
.login.password .logo,
.login.advertiser .logo {
  width: 80px;
  height: auto;
  display: block;
}
.login.register textarea,
.login.registered textarea,
.login.password textarea,
.login.advertiser textarea {
  resize: none;
}
.login.register .container-fluid > h3,
.login.registered .container-fluid > h3,
.login.password .container-fluid > h3,
.login.advertiser .container-fluid > h3,
.login.join .container-fluid > h3 {
  display: none;
}

.login.validator > .d-flex > .container-fluid {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login.validator .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #d9d9d9;
  position: absolute;
  left: -50px;
}
.login.validator .card-user {
  padding-left: 50px;
  margin-right: -50px;
  border: none;
  border-radius: 12px;
}
.login.validator .avatar > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.login.validator .footer {
  display: none;
}
.login.validator {
  background-color: #f4f4f4;
}
