/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #F8F7F3;
  margin: 0;
  padding: 0;
}

.mobile-container {
  max-width: 400px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.content {
  padding: 30px 20px;
  min-height: calc(100vh - 120px);
} */

/* CSS base  */
.screen-base {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.screen-content {
    width: 100%;
    /* max-width: 100%; */
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.bg-no-repeat {
  background-repeat: no-repeat;
}

/* Estilos móviles */
@media (max-width: 768px) {
    .screen-base {
        min-height: 100vh;
        overflow-x: hidden;
    }
}

/* Para overlays sobre imágenes */
.overlay-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Animaciones suaves */
.screen-base {
    transition: background-color 0.3s ease;
}