@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 2.4;
  color: #4a4a4a;
  overflow-x: hidden;
}

/* Gradient Background Section */
.gradient-bg {
  background: linear-gradient(135deg, #ff7b1c 0%, #0073ff 100%);
  min-height: 50vh;
  padding-bottom: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Logo */
.logo {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.5rem;
}
.logo img {
  width: 140px;
  height: auto;
}

.logo-text {
  font-weight: 400;
}

.logo-extension {
  font-weight: 400;
}

.logo-container {
  padding: 20px 0 0 20px;
  text-align: left;
}

span.cta-text {
  color: hsl(0, 0%, 100%);
}

.text-orange {
  color: #ffffff;
}

.text-gray {
  color: #ffffff;
}

.text-small {
  font-size: 0.8rem;
  color: #ffffff;
}

/* Hero Section */
.hero-content {
  margin-bottom: 60px;
  padding: 60px 20px 40px;
  margin-top: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: center;
}

.hero-subtitle {
  font-size: 2.4rem;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
}

/* Pills in header */
.pills-container {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 100px;
  z-index: 200;
}

.pill-item {
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pill-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s infinite ease-out;
  z-index: -1;
}
@media (max-width: 393px) {
  .pill-item::before {
    width: 50% !important;
    height: 100% !important;
  }
}
@media (max-width: 430px) {
  .pill-item::before {
    width: 50% !important;
    height: 100% !important;
  }
}
.pill-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2s infinite ease-out 0.5s;
  z-index: -2;
}
@media (max-width: 393px) {
  .pill-item::after {
    width: 50% !important;
    height: 100% !important;
  }
}
@media (max-width: 430px) {
  .pill-item::after {
    width: 50% !important;
    height: 100% !important;
  }
}
.pill-item .pill-cta-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #4a4a4a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 10;
}
.pill-item .pill-cta-text::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.95);
}
.pill-item:first-child {
  transform: rotate(-45deg);
}
.pill-item:first-child .pill-cta-text {
  color: #0073ff;
}
@media (max-width: 576px) {
  .pill-item:first-child {
    gap: 100px;
    scale: 2.5;
  }
}
.pill-item:last-child {
  transform: rotate(45deg);
}
.pill-item:last-child .pill-cta-text {
  color: #ff7b1c;
}
@media (max-width: 576px) {
  .pill-item:last-child {
    gap: 100px;
    scale: 2.5;
  }
}
.pill-item:hover .pill-cta-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
.pill-item:hover .pill-img {
  filter: 0 12px 24px rgba(0, 0, 0, 0.3) brightness(1.1);
}
.pill-item:hover:first-child {
  transform: rotate(-45deg) scale(1.08);
}
.pill-item:hover:last-child {
  transform: rotate(45deg) scale(1.08);
}
.pill-item:active:first-child {
  transform: rotate(-45deg) scale(1.02);
}
.pill-item:active:last-child {
  transform: rotate(45deg) scale(1.02);
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.pill-img {
  width: 300px;
  height: 300px;
  max-width: 100%;
  object-fit: contain;
  filter: 0 12px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  rotate: 45deg;
}

/* White Section */
.white-section {
  background: #ffffff;
  border-radius: 30px 30px 0 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Esferas decorativas */
.esfera-decorativa {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.esfera-naranja {
  width: 600px;
  height: 600px;
  background-image: url(../images/esfera_gradente_naranja.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  /* top: 50%; */
  transform: translate(-50%, 0%);
}

.esfera-azul {
  width: 600px;
  height: 600px;
  background-image: url(../images/esfera_gradente_azul.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  /* top: 40%; */
  transform: translate(50%, 0%);
}

.pastilla-naranja-header {
  rotate: -45deg;
}
.pastilla-naranja-header.invertido {
  rotate: 45deg;
}

.pastilla-azul-header {
  rotate: 45deg;
}
.pastilla-azul-header.invertido {
  rotate: -45deg;
}

.pastilla-naranja {
  height: 800px;
  background-image: url(./../images/pastilla_naranja.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  transform: translate(-50%, 0%);
  z-index: -5;
  position: absolute;
}

.pastilla-azul {
  height: 800px;
  background-image: url(./../images/pastilla_azul.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  transform: translate(-50%, 0%);
  z-index: -5;
  position: absolute;
}

/* Choice Section */
.choice-section {
  margin-bottom: 100px;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.choice-title {
  font-size: 2.1rem;
  font-weight: 400;
  font-style: italic;
  color: #4a4a4a;
  margin-bottom: 5px;
}

.questions {
  margin-bottom: 100px;
}

.question-text {
  font-size: 1.5rem;
  color: #717171;
  margin-bottom: 0;
  line-height: 1.6;
}

.brand-text {
  margin-top: 100px;
}

.brand-text p {
  font-size: 1.5rem;
  color: #717171;
  margin-bottom: 5px;
  line-height: 1.4;
  text-align: left;
}

.gradient-text {
  background: linear-gradient(90deg, #ff7b1c 0%, #0073ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* Featured Section */
.featured-section {
  margin: 100px 0;
  padding: 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
}

.featured-section .row {
  align-items: center;
  width: 100%;
  margin: 0;
}

.featured-section .col-md-6:first-child {
  padding-left: 0;
  position: relative;
}

.featured-pill {
  height: 800px;
  filter: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
  margin-bottom: 0;
  position: absolute;
  left: -35%;
  top: -100%;
}

.featured-text {
  padding-left: 60px;
  padding-right: 20px;
  padding-top: 0;
}

.featured-line {
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  color: #4a4a4a;
  margin-bottom: 10px;
  line-height: 1.1;
}

/* Info Section */
.info-section {
  margin-bottom: 100px;
  text-align: left;
  padding: 0 20px;
}

.info-textoDestacado {
  font-weight: bolder;
}

.info-title {
  font-size: 1.5rem;
  font-weight: bolder;
  font-style: italic;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.info-text {
  font-size: 1.5rem;
  color: #717171;
  font-style: italic;
  margin-bottom: 60px;
  line-height: 2.4;
}

.info-text strong {
  font-weight: 700;
  color: #4a4a4a;
}

/* Form Section */
#landing-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-section {
  width: 100%;
  padding: 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  /* Material Design Filled TextField */
  /* Material Design Floating Label */
  /* Supporting Text (Helper/Error text) */
  /* Error State */
  /* Success State */
  /* Material Design Button - Filled */
  /* Material Design Typography for supporting text */
}
.form-section .form-group {
  width: 100%;
  max-width: 80%;
  margin-bottom: 1.5rem;
  margin: 0;
  position: relative;
  height: 72px;
}
.form-section .form-control {
  width: 100%;
  height: 56px;
  background: #F5F5F5;
  border: none;
  border-bottom: 1px solid #6F6F6F;
  border-radius: 4px 4px 0 0;
  padding: 24px 16px 8px 16px;
  font-size: 16px;
  color: #212121;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.form-section .form-control:focus {
  background: #EEEEEE;
  border-bottom: 2px solid #FF7B1C;
  outline: none;
  box-shadow: none;
}
.form-section .form-control:hover:not(:focus) {
  background: #E8E8E8;
  border-bottom: 1px solid #212121;
}
.form-section .form-control::placeholder {
  color: transparent;
}
.form-section .form-control:not(:placeholder-shown) + .form-label, .form-section .form-control:focus + .form-label {
  transform: translateY(-12px) scale(0.75);
  color: #FF7B1C;
}
.form-section .form-control:not(:focus):not(:placeholder-shown) + .form-label {
  color: #6F6F6F;
}
.form-section .form-label {
  position: absolute;
  top: 20px;
  left: 16px;
  font-size: 16px;
  color: #6F6F6F;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1;
  z-index: 2;
  background: transparent;
  margin: 0;
  pointer-events: none;
  transform-origin: left top;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-section .form-supporting-text {
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  font-size: 12px;
  color: #6F6F6F;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-section .form-group.error .form-control {
  border-bottom: 2px solid #ff7b1c;
}
.form-section .form-group.error .form-control:focus {
  border-bottom: 2px solid #ff7b1c;
}
.form-section .form-group.error .form-label {
  color: #ff7b1c;
}
.form-section .form-group.error .form-supporting-text {
  color: #ff7b1c;
  opacity: 1;
}
.form-section .form-group.success .form-control {
  border-bottom: 2px solid #4CAF50;
}
.form-section .form-group.success .form-control:focus {
  border-bottom: 2px solid #4CAF50;
}
.form-section .form-group.success .form-label {
  color: #4CAF50;
}
.form-section .cta-button {
  width: 100%;
  max-width: 320px;
  height: 40px;
  background: #FF7B1C;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.form-section .cta-button:hover {
  background: #F57C00;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: translateY(-1px);
}
.form-section .cta-button:active {
  background: #E65100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transform: translateY(0);
}
.form-section .cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 123, 28, 0.3);
}
.form-section .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-section .cta-button:hover::before {
  opacity: 1;
}
.form-section .mystery-text {
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: #757575;
  font-family: "Roboto", sans-serif;
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  max-width: 320px;
  line-height: 1.43;
}

/* Footer */
.footer-section {
  background: #ffffff;
  padding: 40px 0;
}

.footer-line {
  height: 2px;
  background: linear-gradient(90deg, #ff7b1c 0%, #0073ff 100%);
  margin-bottom: 20px;
}

.footer-logo img {
  width: 350px;
  height: auto;
}

.footer-logo .text-orange {
  color: #ff7b1c;
}

.footer-logo .text-blue {
  color: #0073ff;
}

.footer-logo .text-small {
  font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gradient-bg {
    min-height: 45vh;
    padding-bottom: 80px;
  }
  .logo img {
    width: 120px;
  }
  .logo-container {
    padding: 20px 0 0 20px;
  }
  .hero-content {
    padding: 40px 10px 20px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 2.4rem;
  }
  .pills-container {
    bottom: -60px;
    gap: 80px;
  }
  .pill-item .pill-cta-text {
    bottom: -50px;
    font-size: 12px;
    padding: 6px 12px;
  }
  .pill-img {
    width: 160px;
    height: 64px;
  }
  .choice-section {
    margin-bottom: 80px;
    padding: 0 10px;
  }
  .choice-title {
    margin-bottom: 80px;
  }
  .questions {
    margin-bottom: 80px;
  }
  .brand-text {
    margin-top: 80px;
  }
  .brand-text p {
    margin-bottom: 20px;
  }
  .featured-section {
    margin: 80px 0;
    min-height: 220px;
    padding: 0 10px;
    overflow: visible;
  }
  .featured-section .col-md-6:first-child {
    position: relative;
  }
  .featured-pill {
    height: 600px;
    filter: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
    position: absolute;
    left: -85%;
    top: -85%;
  }
  .featured-text {
    padding-left: 4rem;
    padding-top: 0;
  }
  .featured-line {
    font-size: 3.2rem;
  }
  .white-section {
    padding: 60px 0 40px;
  }
  .choice-section,
  .featured-section,
  .info-section,
  .form-section {
    padding: 0 10px;
  }
  /* Esferas responsive - tablet */
  .esfera-naranja {
    width: 150px;
    height: 150px;
    top: 25%;
  }
  .esfera-azul {
    width: 130px;
    height: 130px;
    top: 70%;
  }
}
@media (max-width: 576px) {
  .gradient-bg {
    min-height: 40vh;
    padding-bottom: 60px;
  }
  .logo img {
    width: 100px;
  }
  .logo-container {
    padding: 10px 0 0 10px;
  }
  .hero-content {
    position: relative;
    top: 80px;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .hero-content .mobile-cta-content {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 40px;
    background: transparent;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 21;
    cursor: pointer;
  }
  .hero-content .mobile-cta-content .cta-text {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-family: "Archivo", sans-serif;
  }
  .hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    font-family: "Archivo", sans-serif;
    color: white;
    text-align: center;
    word-wrap: break-word;
    max-width: 300px;
    margin-top: 25px;
  }
  .hero-subtitle {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    font-family: "Archivo", sans-serif;
    color: white;
    text-align: center;
    margin: 0 0 70px 0;
    word-wrap: break-word;
    max-width: 280px;
  }
  .pills-container {
    position: relative;
    bottom: 40px;
    top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 0;
  }
  .pills-container .pill-mobile-cta {
    display: none !important;
  }
  @keyframes ctaGlow393 {
    0%, 100% {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 123, 28, 0.4);
      border-color: rgba(255, 123, 28, 0.9);
    }
    50% {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 123, 28, 0.6);
      border-color: rgb(255, 123, 28);
    }
  }
  @keyframes iconPulse393 {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
  }
  .pill-item[data-pill=azul] .pill-img {
    filter: drop-shadow(0 4px 12px rgba(0, 115, 255, 0.3)) brightness(1.05);
  }
  .pill-item[data-pill=naranja] .pill-img {
    filter: drop-shadow(0 4px 12px rgba(255, 123, 28, 0.3)) brightness(1.05);
  }
  .pill-item:active .pill-img {
    transform: scale(0.95);
  }
  .pill-item .pill-cta-text {
    display: none !important;
  }
  .pill-img {
    width: 130px;
    height: 52px;
    transition: all 0.2s ease;
  }
  .choice-section {
    margin-bottom: 60px;
  }
  .choice-title {
    margin-bottom: 60px;
  }
  .questions {
    margin-bottom: 60px;
  }
  .brand-text {
    margin-top: 60px;
  }
  .brand-text p {
    margin-bottom: 10px;
  }
  .featured-section {
    margin: 60px 0;
    min-height: 180px;
    padding: 0 5px;
    overflow: visible;
  }
  .featured-section .col-md-6:first-child {
    position: relative;
  }
  .featured-pill {
    height: 450px;
    filter: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
    position: absolute;
    left: -70%;
    top: -70%;
  }
  .featured-text {
    padding-left: 4rem;
    padding-top: 0;
  }
  .featured-line {
    font-size: 2.5rem;
  }
  .cta-button {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: auto;
  }
  .white-section {
    padding: 80px 0 40px;
  }
  /* Esferas responsive - móvil */
  .esfera-naranja {
    width: 100px;
    height: 100px;
    top: 20%;
    opacity: 0.6;
  }
  .esfera-azul {
    width: 80px;
    height: 80px;
    top: 75%;
    opacity: 0.6;
  }
}
/* Media Query para iPhone Pro Max y dispositivos similares (430px) */
@media (min-width: 394px) and (max-width: 430px) {
  .pills-container {
    bottom: -50px;
    gap: 80px;
    padding: 0 20px;
  }
  .pill-item:first-child {
    transform: rotate(-15deg);
  }
  .pill-item:last-child {
    transform: rotate(15deg);
  }
  .pill-item::before {
    width: 110%;
    height: 110%;
  }
  .pill-item::after {
    width: 120%;
    height: 120%;
  }
  .pill-item .pill-cta-text {
    display: none;
  }
  .pill-img {
    width: 117px;
    height: 46.8px;
  }
  .hero-content {
    padding: 20px 10px;
  }
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 10px;
  }
  .hero-subtitle {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
/* Media Query para dispositivos móviles muy grandes (iPhone 15 Pro Max, etc.) */
@media (min-width: 431px) and (max-width: 480px) {
  .pills-container {
    bottom: -30px;
    gap: 100px;
    padding: 0 30px;
  }
}
/* Media Query específica para móvil basada en diseño Figma */
@media (max-width: 430px) {
  /* Status Bar iPhone - Frame superior */
  /* Frame principal con gradient background */
  .gradient-bg {
    min-height: 5vh;
    padding-bottom: 3rem;
  }
  /* Logo posicionado exacto */
  .logo-container {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 131px;
    height: 89px;
    padding: 0;
    z-index: 10;
  }
  .logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
  }
  .logo {
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
  }
  /* Título y subtítulo - Frame exacto */
  .hero-content {
    position: relative;
    top: 80px;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .hero-content .mobile-cta-content {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 40px;
    background: transparent;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 21;
    cursor: pointer;
  }
  .hero-content .mobile-cta-content .cta-text {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    font-family: "Archivo", sans-serif;
  }
  .hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    font-family: "Archivo", sans-serif;
    color: white;
    text-align: center;
    word-wrap: break-word;
    max-width: 300px;
    margin-top: 25px;
  }
  .hero-subtitle {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    font-family: "Archivo", sans-serif;
    color: white;
    text-align: center;
    margin: 0 0 20px 0;
    word-wrap: break-word;
    max-width: 280px;
  }
  /* Pastillas como imagen única en posición exacta */
  .pills-container {
    position: relative;
    bottom: 40px;
    top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 0;
  }
  .pills-container .pill-mobile-cta {
    display: none !important;
  }
  @keyframes ctaGlow393 {
    0%, 100% {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 123, 28, 0.4);
      border-color: rgba(255, 123, 28, 0.9);
    }
    50% {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 123, 28, 0.6);
      border-color: rgb(255, 123, 28);
    }
  }
  @keyframes iconPulse393 {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
  }
  .pill-item {
    display: block;
    width: 80px;
    height: 40px;
    position: relative;
  }
  .pill-item::before, .pill-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s infinite ease-out;
    z-index: -1;
  }
  .pill-item::after {
    width: 140%;
    height: 140%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulseRing 2s infinite ease-out 0.5s;
    z-index: -2;
  }
  .pill-item .pill-mobile-cta {
    display: none !important;
  }
  .pill-item .pill-cta-text {
    display: none !important;
  }
  .pill-item:hover .pill-img {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) brightness(1.1);
  }
  .pill-item:active .pill-img {
    transform: scale(0.95);
  }
  @keyframes mobilePulse393 {
    0%, 100% {
      transform: translateX(-50%) scale(1);
      opacity: 0.95;
      box-shadow: 0 3px 12px rgba(0, 115, 255, 0.4);
    }
    50% {
      transform: translateX(-50%) scale(1.02);
      opacity: 1;
      box-shadow: 0 4px 16px rgba(0, 115, 255, 0.5);
    }
  }
  .pill-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
  }
  /* Frame principal después del header */
  /* Div_1 - Primera sección */
  .choice-section {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    position: relative;
  }
  .choice-title {
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: #666;
    font-family: "Archivo", sans-serif;
    text-align: center;
    margin: 0;
    word-wrap: break-word;
  }
  .questions {
    margin: 0;
  }
  .questions .question-text {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    line-height: 1.4;
    margin: 0;
    font-family: "Archivo", sans-serif;
    text-align: center;
    word-wrap: break-word;
    max-width: 320px;
    margin: 0 auto;
  }
  .brand-text {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .brand-text p {
    font-size: 16px;
    font-weight: 300;
    color: #333;
    text-align: center;
    font-family: "Archivo", sans-serif;
    margin: 0;
    word-wrap: break-word;
    max-width: 320px;
  }
  .brand-text img {
    width: 280px;
    height: auto;
    margin: 0;
    object-fit: contain;
  }
  /* Esfera azul decorativa - posición exacta */
  .esfera-decorativa.esfera-azul {
    display: none;
  }
  /* Div_3 - Sección pastilla azul rotada */
  .featured-section {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Pastilla azul centrada y rotada */
    /* Ocultar la pastilla original en móvil */
  }
  .featured-section .row {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .featured-section .col-8, .featured-section .col-md-9 {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .featured-section .pastilla-azul, .featured-section .pastilla-naranja {
    height: 150px;
    top: 0rem;
    left: 7em;
  }
  .featured-section .featured-pill {
    display: none !important;
  }
  .featured-section .featured-text {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
    margin: 0 auto;
  }
  .featured-section .featured-text .featured-line {
    font-size: 18px;
    font-style: italic;
    font-weight: bolder;
    color: #666;
    font-family: "Archivo", sans-serif;
    margin: 0 0 8px 0;
    text-align: center;
    word-wrap: break-word;
    line-height: 1.3;
  }
  /* Esfera naranja decorativa - ocultar en móvil */
  .esfera-decorativa.esfera-naranja {
    display: none;
  }
  /* Frame 8 - Sección de información */
  .info-section {
    width: 100%;
    padding: 0 16px;
    margin: 0 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .info-section .info-title {
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    color: #333;
    font-family: "Archivo", sans-serif;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
  }
  .info-section .info-text {
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    color: #666;
    font-family: "Archivo", sans-serif;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    max-width: 320px;
  }
  /* Sección de formulario - Frame 15 */
  .form-section {
    width: 100%;
    padding: 0 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    /* Botón CTA - Frame 4 */
  }
  .form-section .form-group {
    width: 100%;
    max-width: 320px;
    margin: 0;
    position: relative;
    margin-bottom: 1.5rem;
  }
  .form-section .form-control {
    width: 100%;
    height: 56px;
    background: #F5F5F5;
    border: none;
    border-radius: 28px;
    padding: 16px 20px 4px;
    font-size: 16px;
    color: #333;
    font-family: "Roboto", sans-serif;
    margin: 0;
    box-sizing: border-box;
  }
  .form-section .form-control:focus {
    background: #F5F5F5;
    border: none;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 123, 28, 0.3);
  }
  .form-section .form-control::placeholder {
    color: transparent;
  }
  .form-section .form-label {
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 12px;
    color: #666;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    line-height: 16px;
    z-index: 2;
    background: transparent;
    margin: 0;
    pointer-events: none;
  }
  .form-section .cta-button {
    width: 100%;
    max-width: 320px;
    height: 56px;
    background: #ff7b1c;
    color: white;
    border-radius: 28px;
  }
  .form-section .mystery-text {
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    color: #666;
    font-family: "Archivo", sans-serif;
    text-align: center;
    margin: 0;
    word-wrap: break-word;
    max-width: 320px;
  }
  /* Footer - Frame exacto */
  .footer-section {
    width: 393px;
    margin: 40px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .footer-section .footer-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF7B1C 0%, #4A90E2 100%);
    margin: 0 0 16px;
  }
  .footer-section .footer-logo {
    width: 100%;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-section .footer-logo img {
    width: 280px;
    height: auto;
    margin: 0;
    object-fit: contain;
  }
  /* Layout vertical principal ajustado */
  .main-layout {
    width: 393px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
    overflow-x: hidden;
  }
  /* Ajustes para elementos específicos */
  .bloqueEleccion .esfera-decorativa {
    display: none;
  }
  /* Ocultar elementos que no aparecen en el diseño móvil */
  .pills-container .pill-item {
    display: block !important;
  }
}
/* Estilo para mostrar ambas pastillas */
.pastilla-ambas {
  position: absolute;
  height: 300px;
  width: 100%;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  overflow: visible;
}
.pastilla-ambas::before, .pastilla-ambas::after {
  z-index: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

.pastilla-ambas::before,
.pastilla-ambas::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform-origin: center;
}

/* Pastilla Naranja - Parte visible a la izquierda */
.pastilla-ambas::before {
  left: -120px;
  background-image: url(./../images/pastilla_naranja.png);
  transform: translateY(-50%) rotate(40deg);
  z-index: 2;
}

/* Pastilla Azul - Parte semi visible más atrás */
.pastilla-ambas::after {
  left: -180px;
  background-image: url(./../images/pastilla_azul.png);
  transform: translateY(-50%) rotate(90deg);
  opacity: 0.85;
  z-index: 1;
}

/* Ajuste para el texto adyacente */
.featured-text {
  position: relative;
  z-index: 5;
  padding-left: 240px !important;
}

/* Ajuste contenedor */
.featured-section {
  overflow: visible !important;
  position: relative;
}
.featured-section.seleccionOk {
  margin-top: 0px !important;
}

@media (max-width: 992px) {
  .pastilla-ambas {
    left: -60px;
    height: 250px;
  }
  .pastilla-ambas::before,
  .pastilla-ambas::after {
    width: 400px;
    height: 220px;
  }
  .pastilla-ambas::before {
    left: -100px;
  }
  .pastilla-ambas::after {
    left: -150px;
  }
  .featured-text {
    padding-left: 200px !important;
  }
}
@media (max-width: 768px) {
  .pastilla-ambas {
    left: -70px;
    height: 220px;
    position: absolute;
    transform: translateY(-50%);
  }
  .pastilla-ambas::before,
  .pastilla-ambas::after {
    width: 320px;
    height: 180px;
    transform-origin: center;
  }
  .pastilla-ambas::before {
    left: -60px;
    transform: translateY(-50%) rotate(40deg);
  }
  .pastilla-ambas::after {
    left: -100px;
    transform: translateY(-50%) rotate(90deg);
  }
  .featured-text {
    padding-left: 150px !important;
  }
  .featured-section.seleccionOk {
    margin-top: 30px !important;
  }
}
@media (max-width: 576px) {
  .pastilla-ambas {
    position: absolute;
    height: 200px;
    width: 100%;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    overflow: visible;
    z-index: 1;
  }
  .pastilla-ambas::before,
  .pastilla-ambas::after {
    width: 220px;
    height: 120px;
    top: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: center;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
  }
  .pastilla-ambas::before {
    left: -70px;
    margin-left: 0;
    background-image: url(./../images/pastilla_naranja.png);
    transform: translateY(-50%) rotate(40deg);
    z-index: 2;
  }
  .pastilla-ambas::after {
    left: -100px;
    margin-left: 0;
    background-image: url(./../images/pastilla_azul.png);
    transform: translateY(-50%) rotate(90deg);
    opacity: 0.85;
    z-index: 1;
  }
  .featured-text {
    padding-left: 120px !important;
    padding-right: 16px !important;
    text-align: left;
    margin-top: 0;
    position: relative;
    z-index: 5;
  }
  .featured-line {
    font-size: 1.8rem !important;
    text-align: left !important;
  }
  /* Ajustes de textos para móvil */
  .choice-title {
    font-size: 20px !important;
  }
  .questions p.question-text {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  .brand-text p {
    font-size: 16px !important;
  }
  .brand-text {
    margin-top: 0px !important;
  }
  /* Contenedor para ajustar en móvil - mantener pero ajustar */
  .featured-section.seleccionOk {
    display: block;
    position: relative;
    min-height: 200px;
  }
  /* Ajustes adicionales para mejorar la legibilidad */
  .pill-choice-azul .textoDestacado p,
  .pill-choice-naranja .textoDestacado p {
    text-shadow: none;
  }
}
@media (max-width: 400px) {
  .pastilla-ambas {
    left: -45px;
    height: 180px;
  }
  .pastilla-ambas::before {
    left: -10px;
    width: 200px;
    height: 110px;
  }
  .pastilla-ambas::after {
    left: -40px;
    width: 200px;
    height: 110px;
  }
  .featured-text {
    padding-left: 80px !important;
  }
  .featured-line {
    font-size: 1.5rem !important;
  }
  .choice-title {
    font-size: 18px !important;
    padding: 0 10px;
  }
  .questions p.question-text {
    font-size: 14px !important;
    line-height: 1.3 !important;
    padding: 0 5px;
  }
}
.pastilla-flotante-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  z-index: 1000;
  display: none;
  animation: flotar 4s ease-in-out infinite;
  pointer-events: none;
}

.pastilla-flotante {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: girar 15s linear infinite;
}
.pastilla-flotante.azul {
  background-image: url(./../images/pastilla_azul.png);
}
.pastilla-flotante.naranja {
  background-image: url(./../images/pastilla_naranja.png);
}

.pastilla-naranja {
  background-image: url(./../images/pastilla_naranja.png) !important;
}

.pastilla-azul {
  background-image: url(./../images/pastilla_azul.png) !important;
}

@keyframes flotar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes girar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .pastilla-flotante-container {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .pastilla-flotante-container {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}
/* Banner de consentimiento de cookies */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(33, 33, 33, 0.8);
  color: #ffffff;
  padding: 10px 15px;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
  display: none;
  font-family: "Archivo", sans-serif;
  font-size: 12px;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  margin-right: 15px;
  flex: 1;
}
.cookie-text p {
  margin: 0;
  line-height: 1.3;
}
.cookie-text a {
  color: #ff7b1c;
  text-decoration: none;
}
.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.btn-cookie-accept,
.btn-cookie-config,
.btn-cookie-reject,
.btn-cookie-save {
  padding: 6px 10px;
  border-radius: 3px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.btn-cookie-accept,
.btn-cookie-save {
  background: linear-gradient(135deg, #ff7b1c 0%, #e36217 100%);
  color: #ffffff;
}
.btn-cookie-accept:hover,
.btn-cookie-save:hover {
  background: linear-gradient(135deg, #e36217 0%, #cc5815 100%);
}

.btn-cookie-config,
.btn-cookie-reject {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #ccc;
}
.btn-cookie-config:hover,
.btn-cookie-reject:hover {
  background-color: rgba(204, 204, 204, 0.1);
}

/* Modal de configuración de cookies */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.cookie-modal-content {
  background-color: #ffffff;
  margin: 10% auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  animation: modalFadeIn 0.3s;
}

.cookie-modal-header {
  padding: 15px 20px;
  background: linear-gradient(135deg, #ff7b1c 0%, #0073ff 100%);
  color: #ffffff;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}

.cookie-modal-body {
  padding: 20px;
  color: #4a4a4a;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.cookie-option:last-child {
  border-bottom: none;
}
.cookie-option p {
  margin: 0;
  font-size: 14px;
  color: #717171;
  padding-left: 50px;
}

.cookie-option-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-option-header h4 {
  margin: 0 0 0 15px;
  font-size: 16px;
  font-weight: 500;
}

.cookie-modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

/* Interruptor (Switch) */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: linear-gradient(135deg, #ff7b1c 0%, #e36217 100%);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-wrap: wrap;
  }
  .cookie-text {
    margin-bottom: 8px;
    font-size: 11px;
    flex-basis: 100%;
    margin-right: 0;
  }
  .cookie-buttons {
    flex-basis: 100%;
    justify-content: space-between;
  }
  .btn-cookie-accept,
  .btn-cookie-config,
  .btn-cookie-reject {
    padding: 4px 8px;
    font-size: 11px;
    flex: 1;
    margin: 0 2px;
  }
}
@media (max-width: 576px) {
  .cookie-consent {
    padding: 8px 10px;
  }
  .cookie-modal-content {
    margin: 20% auto;
    width: 95%;
  }
  .btn-cookie-save {
    width: 100%;
    margin-bottom: 8px;
  }
  .cookie-modal-buttons {
    flex-direction: column;
    width: 100%;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.3s;
}

.modal-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #ff7b1c 0%, #0073ff 100%);
  color: white;
}
.modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  max-height: calc(90vh - 65px);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
  }
  .modal-body {
    padding: 16px;
  }
}
/* ====================================
   MODAL DE AGRADECIMIENTO
   ==================================== */
.thanks-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: modalFadeIn 0.5s ease-out forwards;
  padding: 20px;
  box-sizing: border-box;
}

.thanks-modal {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: scale(0.8) translateY(50px);
  animation: modalSlideIn 0.6s ease-out forwards;
  animation-delay: 0.2s;
}

.thanks-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  transition: all 0.3s ease;
  z-index: 10;
}
.thanks-modal-close:hover {
  background: rgb(255, 255, 255);
  color: #333;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.thanks-modal-close:active {
  transform: scale(0.95);
}

.thanks-modal-content {
  padding: 60px 40px 40px;
  text-align: center;
}
@media (max-width: 480px) {
  .thanks-modal-content {
    padding: 50px 25px 30px;
  }
}

/* ====================================
   ICONO DE CHECKMARK ANIMADO
   ==================================== */
.thanks-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.thanks-checkmark {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.thanks-checkmark-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border: 4px solid #4CAF50;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  transform: scale(0);
  animation: checkmarkCircle 0.6s ease-out forwards;
  animation-delay: 0.5s;
}
.thanks-checkmark-stem {
  position: absolute;
  top: 36px;
  left: 28px;
  width: 16px;
  height: 4px;
  background: white;
  border-radius: 2px;
  transform: rotate(45deg) scaleX(0);
  transform-origin: left;
  animation: checkmarkStem 0.3s ease-out forwards;
  animation-delay: 1s;
}
.thanks-checkmark-kick {
  position: absolute;
  top: 44px;
  left: 40px;
  width: 24px;
  height: 4px;
  background: white;
  border-radius: 2px;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: left;
  animation: checkmarkKick 0.3s ease-out forwards;
  animation-delay: 1.1s;
}

/* ====================================
   HEADER DEL MODAL
   ==================================== */
.thanks-header {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: contentSlideIn 0.6s ease-out forwards;
  animation-delay: 0.8s;
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FF7B1C 0%, #0073FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: "Archivo", sans-serif;
}
@media (max-width: 480px) {
  .thanks-title {
    font-size: 2rem;
  }
}

.thanks-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* ====================================
   MENSAJE PERSONALIZADO
   ==================================== */
.thanks-message {
  margin-bottom: 35px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 123, 28, 0.1) 0%, rgba(0, 115, 255, 0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 123, 28, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: contentSlideIn 0.6s ease-out forwards;
  animation-delay: 1s;
}
.thanks-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* ====================================
   SECCIÓN DE REDES SOCIALES
   ==================================== */
.thanks-social {
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(20px);
  animation: contentSlideIn 0.6s ease-out forwards;
  animation-delay: 1.2s;
}

.thanks-social-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-family: "Archivo", sans-serif;
}

.thanks-social-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.thanks-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 480px) {
  .thanks-social-links {
    flex-direction: column;
    gap: 12px;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(10px);
  opacity: 0;
  position: relative;
  overflow: hidden;
  min-width: 140px;
}
.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.social-link:hover::before {
  left: 100%;
}
.social-link .social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.social-link .social-icon i {
  font-size: 1.4rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.social-link span {
  font-family: "Archivo", sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.social-link.facebook {
  background: linear-gradient(135deg, #1877F2 0%, #4267B2 50%, #42A5F5 100%);
  color: white;
  animation: socialSlideIn 0.5s ease-out forwards;
  animation-delay: 1.4s;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}
.social-link.facebook:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.5);
}
.social-link.facebook:hover .social-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
}
.social-link.instagram {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 25%, #F56040 50%, #FCCC63 75%, #FFDC80 100%);
  color: white;
  animation: socialSlideIn 0.5s ease-out forwards;
  animation-delay: 1.5s;
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}
.social-link.instagram:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(228, 64, 95, 0.5);
}
.social-link.instagram:hover .social-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(-5deg);
}
.social-link.tiktok {
  background: linear-gradient(135deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
  color: white;
  animation: socialSlideIn 0.5s ease-out forwards;
  animation-delay: 1.6s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.social-link.tiktok:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 0, 80, 0.4);
}
.social-link.tiktok:hover .social-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
}
.social-link:active {
  transform: scale(0.96);
}
@media (max-width: 480px) {
  .social-link {
    padding: 16px 20px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    min-width: auto;
  }
  .social-link .social-icon {
    width: 28px;
    height: 28px;
  }
  .social-link .social-icon i {
    font-size: 1.2rem;
  }
  .social-link span {
    font-size: 0.9rem;
  }
}

/* ====================================
   FOOTER DEL MODAL
   ==================================== */
.thanks-footer {
  opacity: 0;
  transform: translateY(20px);
  animation: contentSlideIn 0.6s ease-out forwards;
  animation-delay: 1.7s;
}

.thanks-footer-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  font-style: italic;
}
.thanks-footer-text strong {
  color: #FF7B1C;
}

.thanks-continue-btn {
  background: linear-gradient(135deg, #FF7B1C 0%, #FF5722 100%);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 123, 28, 0.3);
}
.thanks-continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 123, 28, 0.4);
}
.thanks-continue-btn:active {
  transform: scale(0.95);
}

/* ====================================
   ANIMACIONES
   ==================================== */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideIn {
  from {
    transform: scale(0.8) translateY(50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@keyframes checkmarkCircle {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes checkmarkStem {
  from {
    transform: rotate(45deg) scaleX(0);
  }
  to {
    transform: rotate(45deg) scaleX(1);
  }
}
@keyframes checkmarkKick {
  from {
    transform: rotate(-45deg) scaleX(0);
  }
  to {
    transform: rotate(-45deg) scaleX(1);
  }
}
@keyframes contentSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes socialSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 480px) {
  .thanks-modal {
    margin: 10px;
    border-radius: 15px;
    max-height: 95vh;
  }
  .thanks-checkmark {
    width: 60px;
    height: 60px;
  }
  .thanks-checkmark-circle {
    width: 60px;
    height: 60px;
  }
  .thanks-checkmark-stem {
    top: 27px;
    left: 21px;
    width: 12px;
  }
  .thanks-checkmark-kick {
    top: 33px;
    left: 30px;
    width: 18px;
  }
  .thanks-title {
    font-size: 1.8rem;
  }
  .thanks-social-links {
    padding: 0 10px;
  }
}
.privacy-container,
.legal-container,
.cookies-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.privacy-container p, .privacy-container li,
.legal-container p,
.legal-container li,
.cookies-container p,
.cookies-container li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.privacy-title,
.legal-title,
.cookies-title {
  color: #ff7b1c;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.privacy-section,
.legal-section,
.cookies-section {
  margin-bottom: 30px;
}
.privacy-section h3,
.legal-section h3,
.cookies-section h3 {
  color: #0073ff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}
.privacy-section h4,
.legal-section h4,
.cookies-section h4 {
  font-size: 16px;
  color: #0073ff;
  margin-bottom: 10px;
  font-weight: 600;
}
.privacy-section ul, .privacy-section ol,
.legal-section ul,
.legal-section ol,
.cookies-section ul,
.cookies-section ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
.privacy-section li,
.legal-section li,
.cookies-section li {
  margin-bottom: 5px;
}

.error-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.error-title {
  font-size: 120px;
  color: #ff7b1c;
  margin-bottom: 20px;
  font-weight: bold;
}

.error-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  color: #0073ff;
}

.error-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

.home-button {
  background: linear-gradient(135deg, #ff7b1c 0%, #0073ff 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.home-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

.error-image {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}
.error-image.rotated {
  transform: rotate(45deg);
  max-width: 100px;
}

.header-small {
  min-height: 150px;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
}
.footer-link:hover {
  color: #ff7b1c;
  text-decoration: underline;
}

.footer-separator {
  color: #666;
  margin: 0 5px;
}

@keyframes pillEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.pill-clicked {
  animation: pillSuccess 0.6s ease-out;
}

@keyframes pillSuccess {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 123, 28, 0.8));
  }
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes flotar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes girar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 393px) {
  .form-group {
    -webkit-tap-highlight-color: transparent;
  }
  .form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .form-control:focus {
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
  .form-check-input {
    width: 22px !important;
    height: 22px !important;
    margin-top: 0 !important;
  }
  .form-check-label {
    font-size: 15px !important;
    padding-top: 2px;
  }
}
.form-section {
  width: 100%;
  padding: 0 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  /* Estilos para los checkboxes */
  /* Material Design Filled TextField */
}
.form-section .form-group {
  width: 100%;
  max-width: 80%;
  margin-bottom: 1.5rem;
  margin: 0;
  position: relative;
  height: 72px;
}
.form-section .checkbox-group {
  height: auto;
  min-height: 40px;
  margin-bottom: 0.5rem;
}
.form-section .checkbox-group .form-check {
  padding-left: 1.8rem;
  margin-bottom: 0.25rem;
}
.form-section .checkbox-group .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-left: -1.8rem;
  margin-top: 0.2rem;
  border: 1px solid #757575;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
.form-section .checkbox-group .form-check .form-check-input:checked {
  background-color: #ff7b1c;
  border-color: #ff7b1c;
}
.form-section .checkbox-group .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 123, 28, 0.25);
  border-color: #ff7b1c;
}
.form-section .checkbox-group .form-check .form-check-label {
  font-size: 14px;
  color: #212121;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
.form-section .checkbox-group .form-check .form-check-label a {
  color: #ff7b1c;
  text-decoration: none;
  transition: all 0.2s ease;
}
.form-section .checkbox-group .form-check .form-check-label a:hover {
  text-decoration: underline;
}
.form-section .checkbox-group .checkbox-error {
  color: #ff7b1c;
  font-size: 12px;
  margin-top: 0.25rem;
  margin-left: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form-section .checkbox-group.error .form-check-input {
  border-color: #ff7b1c;
}
.form-section .checkbox-group.error .checkbox-error {
  opacity: 1;
}
.form-section .form-control {
  width: 100%;
  height: 56px;
  background: #f5f5f5;
  border: none;
  border-bottom: 1px solid #6f6f6f;
  border-radius: 4px 4px 0 0;
  padding: 24px 16px 8px 16px;
  font-size: 16px;
  color: #212121;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}
.form-section .form-control:focus {
  background: #eeeeee;
  border-bottom: 2px solid #ff7b1c;
  outline: none;
  box-shadow: none;
}
.form-section .form-control:hover:not(:focus) {
  background: #e8e8e8;
  border-bottom: 1px solid #212121;
}
.form-section .form-control::placeholder {
  color: transparent;
}
.form-section .form-control:not(:placeholder-shown) + .form-label, .form-section .form-control:focus + .form-label {
  transform: translateY(-12px) scale(0.75);
  color: #ff7b1c;
}
.form-section .form-control:not(:focus):not(:placeholder-shown) + .form-label {
  color: #6f6f6f;
}

/* Estilos para los CTAs de recordatorio */
.cta-reminder {
  background: #ff7b1c;
  color: white;
  border-radius: 30px;
  padding: 12px 24px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  font-family: "Archivo", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.cta-reminder:active {
  transform: translateY(0);
}
.cta-reminder i {
  font-size: 18px;
}

/* Estilos para los diferentes CTAs */
.cta-hero {
  margin-top: 0px !important;
  min-width: 220px;
  background-color: transparent !important;
  background: none !important;
  box-shadow: none !important;
  top: 0rem;
}

.cta-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: pulse-float 2s infinite;
}

@keyframes pulse-float {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }
}
.cta-section {
  margin: 20px auto;
  display: block;
  text-align: center;
}

@media (max-width: 576px) {
  .cta-floating {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .cta-hero {
    margin-top: 20px;
    min-width: 200px;
    font-size: 14px;
    padding: 10px 20px;
    top: -3rem;
  }
}
/* Estilos para textoDestacado */
.textoDestacado p {
  font-size: 34px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin-bottom: 4px !important;
  font-style: italic;
}

/* Estilos para textoDestacado según el tipo de pastilla */
.pill-choice-azul .textoDestacado p {
  color: #0073ff;
  font-weight: 600 !important;
}

.pill-choice-naranja .textoDestacado p {
  color: #ff7b1c;
  font-weight: 600 !important;
}

/* Ajustes responsive para textoDestacado */
@media (max-width: 1200px) {
  .textoDestacado p {
    font-size: 30px !important;
    line-height: 1.3 !important;
  }
}
@media (max-width: 992px) {
  .textoDestacado p {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
}
@media (max-width: 768px) {
  .textoDestacado p {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 576px) {
  .textoDestacado p {
    font-size: 20px !important;
    line-height: 1.2 !important;
    margin-bottom: 3px !important;
    text-align: left;
    padding-left: 0;
  }
  .textoDestacado {
    margin-top: 32px !important;
    padding: 0;
  }
}
@media (max-width: 400px) {
  .textoDestacado p {
    font-size: 1rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px; /* Mejorar legibilidad en pantallas pequeñas */
  }
}
/* Animación de aparición para el texto de elección */
.pill-choice-azul,
.pill-choice-naranja {
  animation: fadeInText 0.8s ease-out;
}

/* Aplicar la misma animación al textoDestacado */
.textoDestacado {
  animation: fadeInText 0.8s ease-out 0.3s both;
  margin-top: 48px !important;
  position: relative;
  transition: all 0.3s ease;
}

/* Efectos visuales para mejorar legibilidad */
.pill-choice-azul .textoDestacado p {
  text-shadow: 0 1px 2px rgba(0, 115, 255, 0.1);
}

.pill-choice-naranja .textoDestacado p {
  text-shadow: 0 1px 2px rgba(255, 123, 28, 0.1);
}

/* Ajustes específicos para pastilla azul */
.pastilla-azul-header {
  filter: drop-shadow(0 4px 8px rgba(0, 115, 255, 0.3));
}

/* Ajustes específicos para pastilla naranja */
.pastilla-naranja-header {
  filter: drop-shadow(0 4px 8px rgba(255, 123, 28, 0.3));
}

/* Estilos para el texto "SER O NO SER" */
.ser-o-no-ser {
  font-size: 10rem;
  font-weight: 900;
  position: absolute;
  left: 0;
  right: 0;
  top: 80%;
  text-align: center;
  opacity: 0.07;
  color: #fff;
  text-transform: uppercase;
  font-family: "Archivo", sans-serif;
  letter-spacing: 0.1rem;
  white-space: normal;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  word-break: break-word;
  line-height: 0.9;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .ser-o-no-ser {
    font-size: 8rem;
  }
}
@media (max-width: 992px) {
  .ser-o-no-ser {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .ser-o-no-ser {
    font-size: 5rem;
  }
}
@media (max-width: 576px) {
  .ser-o-no-ser {
    font-size: 3.5rem;
    line-height: 1;
  }
}
@media (max-width: 400px) {
  .ser-o-no-ser {
    font-size: 3rem;
    max-width: 100%;
    top: 80%;
    letter-spacing: 0;
    line-height: 1;
  }
}
@media (max-width: 430px) {
  .ser-o-no-ser {
    font-size: 3rem;
    top: 80%;
    letter-spacing: 0;
    line-height: 1;
  }
}
.privacy-container p, .privacy-container li,
.legal-container p,
.legal-container li,
.cookies-container p,
.cookies-container li {
  font-size: 10px;
  margin: 0;
}
.privacy-container .privacy-section,
.privacy-container .legal-section,
.privacy-container .cookies-section,
.legal-container .privacy-section,
.legal-container .legal-section,
.legal-container .cookies-section,
.cookies-container .privacy-section,
.cookies-container .legal-section,
.cookies-container .cookies-section {
  margin-bottom: 0;
}
.privacy-container .privacy-section h4,
.privacy-container .legal-section h4,
.privacy-container .cookies-section h4,
.legal-container .privacy-section h4,
.legal-container .legal-section h4,
.legal-container .cookies-section h4,
.cookies-container .privacy-section h4,
.cookies-container .legal-section h4,
.cookies-container .cookies-section h4 {
  font-size: 10px;
  margin-bottom: 0;
}

/* Los estilos de cookies se han movido al archivo _cookies.scss */
/* Estilos adicionales específicos para landing.php */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalFadeIn 0.3s;
}

.modal-header {
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  background: linear-gradient(135deg, #FF7B1C 0%, #4A90E2 100%);
  color: white;
}

.modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  max-height: calc(90vh - 65px);
}

.privacy-container, .legal-container {
  font-size: 14px;
  line-height: 1.6;
}

.privacy-section, .legal-section {
  margin-bottom: 20px;
}

.privacy-title, .legal-title {
  font-size: 18px;
  color: #FF7B1C;
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-section h4, .legal-section h4 {
  font-size: 16px;
  color: #4A90E2;
  margin-bottom: 10px;
  font-weight: 600;
}

.privacy-section ul, .legal-section ul, .legal-section ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.privacy-section li, .legal-section li {
  margin-bottom: 5px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .modal-container {
    width: 95%;
  }
  .modal-body {
    padding: 16px;
  }
}/*# sourceMappingURL=estilo.css.map */