.contenedor {
    background: #FFFFFF; /* Fondo blanco */
    padding: 25px; /* Más espacio interno */
    margin: 20px auto;
    max-width: 320px; /* Ajustar tamaño */
    width: 90%;
    border-radius: 10px; /* Bordes ligeramente redondeados */
    border: 1px solid #e0e0e0; /* Borde muy sutil */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Sombra suave y elegante */
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #333333;
}

.contenedor i {
    font-size: 2.5em; /* Icono un poco más grande */
    color: #007bff; /* Color de acento (azul) */
    margin-right: 20px;
}

.contenedor .texto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contenedor p {
    margin: 0;
    font-weight: 400;
    font-size: 1em;
    color: #555555; /* Gris más oscuro para el texto */
}

#contador {
    font-size: 2.5em;
    font-weight: 700;
    color: #007bff; /* Color de acento (azul) */
    line-height: 1.2;
}

/* Media Query para pantallas más pequeñas */
@media (max-width: 480px) {
    .contenedor {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .contenedor i {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 1.5em;
    }

    .contenedor .texto {
        align-items: center;
    }

    .contenedor p {
        font-size: 0.9em;
    }

    #contador {
        font-size: 1.5em;
    }
}

.contenedor-marco {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.marco-responsivo {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
}